This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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 \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]