This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[patch] fix boehm-gc 6.6 merge fallout on darwin ppc
- From: Andreas Tobler <toa at pop dot agri dot ch>
- To: Java Patches <java-patches at gcc dot gnu dot org>, Bryce McKinlay <mckinlay at redhat dot com>
- Cc: Hans Boehm <Hans dot Boehm at hp dot com>
- Date: Wed, 25 Jan 2006 11:31:00 +0100
- Subject: [patch] fix boehm-gc 6.6 merge fallout on darwin ppc
Hello,
the boehm-gc merge has a little problem which leads to an unresolved
_GC_push_regs on darwin ppc.
The reason is a renamer in the Makefile.am
The attached patch should fix this.
Side note, the test works again since a long time :)
Completed 3 tests
Allocated 5708140 collectable objects
Allocated 306 uncollectable objects
Allocated 3750000 atomic objects
Allocated 34440 stubborn objects
Finalized 6622/6622 objects - finalization is probably ok
Total number of bytes allocated is 293321284
Final heap size is 16392192 bytes
Collector appears to work
Completed 187 collections
PASS: gctest
==================
All 1 tests passed
==================
Ok for main?
Andreas
2006-01-25 Andreas Tobler <a.tobler@schweiz.ch>
* Makefile.am (asm_libgcjgc_sources): Rename to to asm_libgcjgc_sources.
* Makefile.in: Regenrate.
Index: Makefile.am
===================================================================
--- Makefile.am (revision 110205)
+++ Makefile.am (working copy)
@@ -12,9 +12,9 @@
noinst_LTLIBRARIES = libgcjgc.la libgcjgc_convenience.la
if POWERPC_DARWIN
-asm_libgc_sources = powerpc_darwin_mach_dep.s
+asm_libgcjgc_sources = powerpc_darwin_mach_dep.s
else
-asm_libgc_sources =
+asm_libgcjgc_sources =
endif
libgcjgc_la_SOURCES = allchblk.c alloc.c blacklst.c checksums.c
dbg_mlc.c \