summaryrefslogtreecommitdiff
path: root/devel/boehm-gc
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1996-11-16 01:51:39 +0000
committerJohn Polstra <jdp@FreeBSD.org>1996-11-16 01:51:39 +0000
commit221c169fee33c973b603d8bdae1b8eff218ed411 (patch)
tree24e4cdc88ffc99031f63fd85effa23a2250c5035 /devel/boehm-gc
parentUpgrade to 6a (diff)
New port "boehm-gc". It is a drop-in garbage collector for C and C++
programs. Submitted by: Mike McGaughey <mmcg@heraclitus.cs.monash.edu.au>
Notes
Notes: svn path=/head/; revision=4500
Diffstat (limited to 'devel/boehm-gc')
-rw-r--r--devel/boehm-gc/Makefile24
-rw-r--r--devel/boehm-gc/distinfo1
-rw-r--r--devel/boehm-gc/files/patch-aa90
-rw-r--r--devel/boehm-gc/files/patch-ab72
-rw-r--r--devel/boehm-gc/pkg-comment1
-rw-r--r--devel/boehm-gc/pkg-descr23
-rw-r--r--devel/boehm-gc/pkg-plist5
7 files changed, 216 insertions, 0 deletions
diff --git a/devel/boehm-gc/Makefile b/devel/boehm-gc/Makefile
new file mode 100644
index 000000000000..14b5c50677bc
--- /dev/null
+++ b/devel/boehm-gc/Makefile
@@ -0,0 +1,24 @@
+# New ports collection makefile for: boehm-gc
+# Version required: 4.10
+# Date created: 15 November 1996
+# Whom: Mike McGaughey <mmcg@cs.monash.edu.au>
+#
+# $Id$
+#
+
+DISTNAME= gc4.10
+PKGNAME= boehm-gc-4.10
+CATEGORIES= devel
+MASTER_SITES= ftp://ftp.parc.xerox.com/pub/gc/
+
+MAINTAINER= mmcg@cs.monash.edu.au
+
+WRKSRC= ${WRKDIR}/gc
+MAN3= gc.3
+ALL_TARGET= FreeBSD-pkg-all
+INSTALL_TARGET= FreeBSD-pkg-install
+MAKE_ENV+= CP="${CP}"
+MAKE_ENV+= INSTALL_DATA="${INSTALL_DATA}"
+MAKE_ENV+= INSTALL_MAN="${INSTALL_MAN}"
+
+.include <bsd.port.mk>
diff --git a/devel/boehm-gc/distinfo b/devel/boehm-gc/distinfo
new file mode 100644
index 000000000000..807a74ecb716
--- /dev/null
+++ b/devel/boehm-gc/distinfo
@@ -0,0 +1 @@
+MD5 (gc4.10.tar.gz) = 8281966ed48e630d64f0ebc00f68d617
diff --git a/devel/boehm-gc/files/patch-aa b/devel/boehm-gc/files/patch-aa
new file mode 100644
index 000000000000..4094520cbbd8
--- /dev/null
+++ b/devel/boehm-gc/files/patch-aa
@@ -0,0 +1,90 @@
+*** Makefile.orig Mon Feb 19 09:45:47 1996
+--- Makefile Fri Nov 15 14:19:11 1996
+***************
+*** 13,19 ****
+ # The above doesn't work with gas, which doesn't run cpp.
+ # Define AS as `gcc -c -x assembler-with-cpp' instead.
+
+! CFLAGS= -O -DNO_SIGNALS -DALL_INTERIOR_POINTERS -DSILENT
+
+ # Setjmp_test may yield overly optimistic results when compiled
+ # without optimization.
+--- 13,45 ----
+ # The above doesn't work with gas, which doesn't run cpp.
+ # Define AS as `gcc -c -x assembler-with-cpp' instead.
+
+! # We want this to be a drop-in linkable library, hence the -DREDIRECT.
+! # The new c++-t and c++-nt (test and notest) are because we don't want
+! # to fill anyone's log with leak messages! - MMCG
+!
+! CFLAGS= -O -DNO_SIGNALS -DALL_INTERIOR_POINTERS -DSILENT \
+! -DREDIRECT_MALLOC=GC_malloc
+!
+! LEAKFLAGS=$(CFLAGS) -DFIND_LEAK
+!
+! all: gc.a gctest
+!
+! FreeBSD-pkg-all: fbsd-libgc.a fbsd-libleak.a
+!
+! fbsd-libgc.a:
+! make CFLAGS="$(CFLAGS)" clean c++-t
+! mv gc.a fbsd-libgc.a
+!
+! fbsd-libleak.a:
+! make CFLAGS="$(LEAKFLAGS)" clean c++-nt
+! mv gc.a fbsd-libleak.a
+!
+! FreeBSD-pkg-install: FreeBSD-pkg-all
+! ${CP} fbsd-libgc.a libgc.a
+! ${CP} fbsd-libleak.a libleak.a
+! ${INSTALL_DATA} libleak.a libgc.a ${PREFIX}/lib
+! ${INSTALL_DATA} gc.h gc_cpp.h ${PREFIX}/include
+! ${INSTALL_MAN} gc.man ${PREFIX}/man/man3/gc.3
+
+ # Setjmp_test may yield overly optimistic results when compiled
+ # without optimization.
+***************
+*** 124,131 ****
+ # not time-critical anyway.
+ # Set SPECIALCFLAGS to -q nodirect_code on Encore.
+
+- all: gc.a gctest
+-
+ pcr: PCR-Makefile gc_private.h gc_hdrs.h gc.h config.h mach_dep.o $(SRCS)
+ make -f PCR-Makefile depend
+ make -f PCR-Makefile
+--- 150,155 ----
+***************
+*** 170,182 ****
+ ./if_mach SPARC SUNOS5 $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a -lthread -ldl
+ ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a
+
+ c++: gc_cpp.o $(srcdir)/gc_cpp.h test_cpp
+ rm -f on_sparc_sunos5
+ ./if_mach SPARC SUNOS5 touch on_sparc_sunos5
+ ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
+ ./if_not_there on_sparc_sunos5 $(AR) ru gc.a gc_cpp.o
+ ./if_not_there on_sparc_sunos5 $(RANLIB) gc.a || cat /dev/null
+- ./test_cpp 1
+
+ dyn_load_sunos53.o: dyn_load.c
+ $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
+--- 194,211 ----
+ ./if_mach SPARC SUNOS5 $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a -lthread -ldl
+ ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a
+
++ c++-t: c++
++ ./test_cpp 1
++
++ c++-nt: c++
++ @echo "Use ./test_cpp 1 to test the leak library"
++
+ c++: gc_cpp.o $(srcdir)/gc_cpp.h test_cpp
+ rm -f on_sparc_sunos5
+ ./if_mach SPARC SUNOS5 touch on_sparc_sunos5
+ ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
+ ./if_not_there on_sparc_sunos5 $(AR) ru gc.a gc_cpp.o
+ ./if_not_there on_sparc_sunos5 $(RANLIB) gc.a || cat /dev/null
+
+ dyn_load_sunos53.o: dyn_load.c
+ $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
diff --git a/devel/boehm-gc/files/patch-ab b/devel/boehm-gc/files/patch-ab
new file mode 100644
index 000000000000..6790f5583e27
--- /dev/null
+++ b/devel/boehm-gc/files/patch-ab
@@ -0,0 +1,72 @@
+*** gc.man.orig Fri Nov 15 08:56:14 1996
+--- gc.man Fri Nov 15 09:30:14 1996
+***************
+*** 9,15 ****
+ ... malloc(...) ...
+ .br
+ .sp
+! cc ... gc.a
+ .LP
+ .SH DESCRIPTION
+ .I GC_malloc
+--- 9,17 ----
+ ... malloc(...) ...
+ .br
+ .sp
+! cc ... -lgc
+! .sp
+! cc ... -lleak
+ .LP
+ .SH DESCRIPTION
+ .I GC_malloc
+***************
+*** 67,72 ****
+--- 69,116 ----
+ This may temporarily write protect pages in the heap. See the README file for more information on how this interacts with system calls that write to the heap.
+ .LP
+ Other facilities not discussed here include limited facilities to support incremental collection on machines without appropriate VM support, provisions for providing more explicit object layout information to the garbage collector, more direct support for ``weak'' pointers, support for ``abortable'' garbage collections during idle time, etc.
++ .LP
++ .SH "PORT INFORMATION"
++ .LP
++ In this (FreeBSD package) installation,
++ .I gc.h
++ and
++ .I gc_cpp.h
++ will probably be found in
++ .I /usr/local/include,
++ and the libraries in
++ .I /usr/local/lib.
++ .LP
++ These libraries have been compiled as drop-in replacements
++ for malloc and free (which is to say, all malloc
++ calls will allocate garbage-collectable data).
++ There is no need to include "gc.h" in your C files unless you want
++ access to the debugging (and other) functions defined there,
++ or unless you want to explicitly use
++ .I GC_malloc_uncollectable
++ for some allocations.
++ Just link against them whenever you want either garbage
++ collection or leak detection.
++ .LP
++ The C++ header file, "gc_cpp.h",
++ .I is
++ necessary for C++ programs, to obtain the appropriate
++ definitions of the
++ .I new
++ and
++ .I delete
++ operators.
++ The comments in both of these header files presently
++ provide far better documentation
++ for the package than this man page;
++ look there for more information.
++ .LP
++ Both libraries are compiled without (explicit) support
++ for the experimental
++ .I gc
++ extension of
++ .I g++.
++ This may or may not make a difference.
+ .LP
+ .SH "SEE ALSO"
+ The README and gc.h files in the distribution. More detailed definitions of the functions exported by the collector are given there. (The above list is not complete.)
diff --git a/devel/boehm-gc/pkg-comment b/devel/boehm-gc/pkg-comment
new file mode 100644
index 000000000000..7554875aabb8
--- /dev/null
+++ b/devel/boehm-gc/pkg-comment
@@ -0,0 +1 @@
+Garbage collection and memory leak detection for C and C++.
diff --git a/devel/boehm-gc/pkg-descr b/devel/boehm-gc/pkg-descr
new file mode 100644
index 000000000000..97708039560b
--- /dev/null
+++ b/devel/boehm-gc/pkg-descr
@@ -0,0 +1,23 @@
+The Boehm-Weiser garbage collection package, for C and C++ -
+garbage collection and memory leak detection libraries.
+
+A garbage collector is something which automatically frees malloc'd
+memory for you by working out what parts of memory your program
+no longer has pointers to. As a result, garbage collectors can also
+inform you of memory leaks (if they find memory they can free, it means
+you have lost all of your pointers to it, but you didn't free it).
+
+This package has two libraries and some include files:
+libgc.a - a garbage collection library, replaces malloc/free/new/delete/etc
+ with versions that do automatic garbage collection
+libleak.a - a leak detection library, which is just libgc.a compiled with
+ different switches.
+
+C programs may be linked against either of these, and should run (with
+GC or leak detection) without change. C++ programs must include a header
+to use garbage collection, though leak detection should work without
+such source code modifications. See the man page and header files.
+
+-- Mike McGaughey <mmcg@cs.monash.edu.au>
+
+ps: garbage collection is addictive.
diff --git a/devel/boehm-gc/pkg-plist b/devel/boehm-gc/pkg-plist
new file mode 100644
index 000000000000..66f4f0e26a6f
--- /dev/null
+++ b/devel/boehm-gc/pkg-plist
@@ -0,0 +1,5 @@
+include/gc.h
+include/gc_cpp.h
+lib/libgc.a
+lib/libleak.a
+man/man3/gc.3.gz