2d140d22cc
The libgcroots library abstracts the architecture-dependent part of garbage collector roots acquisition such as register windows of SPARC and register stack backing store of IA-64. The main code is based on Boehm GC 7.0. With this library, one can easily write a garbage collector with goals such as a small footprint, some application-specific optimizations, learning, or to test experimental ideas. ok sthen@
22 lines
468 B
Makefile
22 lines
468 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2019/03/11 11:13:53 bentley Exp $
|
|
|
|
COMMENT = garbage collector library
|
|
|
|
V = 0.3.1
|
|
DISTNAME = libgcroots-$V
|
|
|
|
SHARED_LIBS += gcroots 0.0 # 1.0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/uim/libgcroots/
|
|
|
|
# Boehm GC license, permission to use/copy/modify/distribute
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = https://github.com/uim/libgcroots/releases/download/$V/
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|