aboutsummaryrefslogtreecommitdiffstats
path: root/devel/boehm-gc/files
diff options
context:
space:
mode:
authorjdp <jdp@FreeBSD.org>1996-11-16 09:51:39 +0800
committerjdp <jdp@FreeBSD.org>1996-11-16 09:51:39 +0800
commit4763a2c8eb91b3548f581bbc78d00a3ada926735 (patch)
tree5634126202543822b219e9b841179f53422ca8f0 /devel/boehm-gc/files
parent12086ab4801aa4aac37a3317fc38744f9709c10a (diff)
downloadfreebsd-ports-gnome-4763a2c8eb91b3548f581bbc78d00a3ada926735.tar.gz
freebsd-ports-gnome-4763a2c8eb91b3548f581bbc78d00a3ada926735.tar.zst
freebsd-ports-gnome-4763a2c8eb91b3548f581bbc78d00a3ada926735.zip
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>
Diffstat (limited to 'devel/boehm-gc/files')
-rw-r--r--devel/boehm-gc/files/patch-aa90
-rw-r--r--devel/boehm-gc/files/patch-ab72
2 files changed, 162 insertions, 0 deletions
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.)