GCC build failed for native with your patch on 2002-01-04T19:39:07Z.
GCC regression checker
regress@maat.cygnus.com
Fri Jan 4 14:10:00 GMT 2002
With your recent patch, GCC does not compile on:
native
Attached is build output for those targets.
The last time the regression tests were run, GCC did not compile either,
so the problem might not be caused by your patch.
There were also 0 new regression test failures, and 3
failures that existed before and after that patch; 0 failures
have been fixed.
The old failures, which were not fixed or introduced by your patch, are:
powerpc-eabisim gcc.sum gcc.c-torture/compile/20000827-1.c,
powerpc-eabisim gcc.sum gcc.c-torture/compile/941014-3.c,
powerpc-eabisim gcc.sum gcc.c-torture/execute/931017-1.c
For more information, see <http://people.redhat.com/geoffk/gcc-regression/>.
-------------- next part --------------
ChangeLog entries since last run on 2002-01-04T17:08:13Z:
--- /maat/heart/tbox/changelog_mail/gcc/gcc/ChangeLog Fri Jan 4 09:08:26 2002
+++ gcc/gcc/ChangeLog Fri Jan 4 11:39:21 2002
@@ -1,3 +1,15 @@
+Fri Jan 4 11:45:05 2002 Jeffrey A Law (law@redhat.com)
+
+ * c-common.c (c_expand_start_cond): Expect the IF_STMT node to
+ be passed in, do not build it.
+ (c_begin_if_stmt): New function.
+ (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
+ * c-common.h (c_expand_start_cond): Update prototype.
+ (c_begin_if_stmt): Prototype new function.
+ (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
+ * c-parse.in (if_prefix): Use c_begin_if_stmt,
+ c_begin_while_stmt and c_finish_while_stmt_cond.
+
2002-01-04 William Cohen <wcohen@redhat.com>
* config/pa/elf.h (ASM_FILE_START): Reverted to profile_flag.
ChangeLog entries between 2002-01-04T17:08:13Z and the last time everything
passed, on 2002-01-04T04:07:54Z:
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog Thu Jan 3 20:08:09 2002
+++ gcc/gcc/ChangeLog Fri Jan 4 09:08:26 2002
@@ -1,3 +1,59 @@
+2002-01-04 William Cohen <wcohen@redhat.com>
+
+ * config/pa/elf.h (ASM_FILE_START): Reverted to profile_flag.
+ * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
+ * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
+ * config/pa/som.h (ASM_FILE_START): Likewise.
+
+2001-01-04 Daniel Berlin <dan@cgsoftware.com>
+
+ * lcm.c: Include df.h.
+ Add available_transfer_function prototype.
+ (compute_available): Rework to use iterative dataflow framework.
+ (struct bb_info): s/bb_info/lcm_bb_info/g to avoid conflict
+ with bb_info in df.h
+ (available_transfer_function): New function.
+
+ * Makefile.in (lcm.o): add df.h to dependencies.
+
+2002-01-04 Richard Henderson <rth@redhat.com>
+
+ * config/alpha/alpha.c (some_operand): Accept HIGH.
+ (input_operand): Likewise; accept simple references to globals.
+ (alpha_const_ok_for_letter_p): New, outlined from alpha.h.
+ (alpha_const_double_ok_for_letter_p): Likewise.
+ (alpha_extra_constraint): Likewise.
+ (alpha_preferred_reload_class): Likewise. Do not force
+ symbolic constants to memory.
+ (alpha_legitimate_address_p): Accept simple references
+ to small_symbolic_operand.
+ (alpha_legitimize_address): New arg scratch. Be prepared to be
+ called when no_new_pseudos. Emit simple symbolic references.
+ Split integers into low, high, and rest.
+ (alpha_expand_mov): Use alpha_legitimize_address.
+ (some_small_symbolic_mem_operand): New.
+ (split_small_symbolic_mem_operand): New.
+ * config/alpha/alpha-protos.h: Update.
+ * config/alpha/alpha.h (CONST_OK_FOR_LETTER_P): Out-line.
+ (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
+ (EXTRA_CONSTRAINT): Likewise.
+ (PREFERRED_RELOAD_CLASS): Likewise.
+ (LEGITIMIZE_ADDRESS): Update for alpha_legitimize_address change.
+ (PREDICATE_CODES): Update.
+ * config/alpha/alpha.md: New post-reload splitters to convert
+ simplfied symbolic operands to the form that references $29.
+ (divide expanders): Use emit_move_insn, not gen_movdi_er_high_g.
+ (movdi_er_nofix, movdi_er_fix): Accept any symbolic operand.
+
+2002-01-03 Richard Henderson <rth@redhat.com>
+
+ * local-alloc.c (function_invariant_p): Update commentary.
+
+2002-01-04 H.J. Lu <hjl@gnu.org>
+
+ * toplev.c (rest_of_compilation): Fix a typo when calling
+ cleanup_cfg.
+
2002-01-03 Kazu Hirata <kazu@hxi.com>
* c-common.c: Fix formatting.
--- /maat/heart/tbox/changelog_pass/gcc/gcc/cp/ChangeLog Wed Jan 2 12:11:42 2002
+++ gcc/gcc/cp/ChangeLog Fri Jan 4 06:15:17 2002
@@ -1,3 +1,11 @@
+2002-01-04 Jason Merrill <jason@redhat.com>
+
+ * class.c (update_vtable_entry_for_fn): Set delta to zero for a
+ lost primary.
+
+ * class.c (build_vtbl_initializer): Check for a lost primary
+ before calculating the vtable entry to throw away.
+
2002-01-02 Jason Merrill <jason@redhat.com>
* semantics.c (expand_body): Call outlining_inline_function when
--- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog Thu Jan 3 17:33:50 2002
+++ gcc/gcc/testsuite/ChangeLog Thu Jan 3 22:42:42 2002
@@ -1,3 +1,7 @@
+2002-01-04 Hans-Peter Nilsson <hp@bitrange.com>
+
+ * gcc.dg/20020103-1.c: Fix typo in target selector.
+
2002-01-03 Richard Henderson <rth@redhat.com>
* gcc.dg/20020103-1.c: New.
--- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog Thu Jan 3 12:23:42 2002
+++ gcc/libstdc++-v3/ChangeLog Fri Jan 4 09:08:34 2002
@@ -1,3 +1,16 @@
+2002-01-04 Paolo Carlini <pcarlini@unitus.it>
+
+ * include/bits/stl_tree.h (rb_tree): Move to...
+ * include/ext/rb_tree: ...here, new file.
+ * include/Makefile.am (ext_headers): Add new file.
+ * include/Makefile.in: Regenerate.
+ * include/bits/stl_tempbuf.h (get_temporary_buffer + helper,
+ return_temporary_buffer, struct temporary_buffer): Move to...
+ * include/ext/memory: ...here.
+ * testsuite/ext/headers.cc: Include <ext/rb_tree>.
+ * include/backward/tempbuf.h: Include <ext/memory>, tweak.
+ * include/backward/tree.h: Include <ext/rb_tree), tweak.
+
2002-01-03 Paolo Carlini <pcarlini@unitus.it>
* include/bits/stl_numeric.h (power + helpers, iota): Move to...
--- /maat/heart/tbox/changelog_pass/gcc/libf2c/ChangeLog Tue Dec 4 04:07:49 2001
+++ gcc/libf2c/ChangeLog Thu Jan 3 22:42:43 2002
@@ -1,3 +1,7 @@
+2002-01-03 Loren J. Rittle <ljrittle@acm.org>
+
+ * Makefile.in ($(LIBG2C):): Let libtool decide when to add -lc.
+
2001-12-04 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in ($(LIBG2C)): Fix -rpath argument to libtool.
-------------- next part --------------
/bin/sh ./libtool --tag=CXX --mode=compile /maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I!
/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX="\"/maat/heart/tbox/objs\"" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natFirstThread.lo -MF gnu/gcj/runtime/natFirstThread.pp -c -o gnu/gcj/runtime/natFirstThread.lo /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natFirstThread.cc
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boe!
hm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX=\"/maat/heart/tbox/objs\" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natFirstThread.lo -MF gnu/gcj/runtime/natFirstThread.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natFirstThread.cc -fPIC -DPIC -o gnu/gcj/runtime/.libs/natFirstThread.o
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boe!
hm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX=\"/maat/heart/tbox/objs\" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natFirstThread.lo -MF gnu/gcj/runtime/natFirstThread.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natFirstThread.cc -o gnu/gcj/runtime/natFirstThread.o >/dev/null 2>&1
/bin/sh ./libtool --tag=CXX --mode=compile /maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I!
/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX="\"/maat/heart/tbox/objs\"" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natSharedLibLoader.lo -MF gnu/gcj/runtime/natSharedLibLoader.pp -c -o gnu/gcj/runtime/natSharedLibLoader.lo /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natSharedLibLoader.cc
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boe!
hm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX=\"/maat/heart/tbox/objs\" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natSharedLibLoader.lo -MF gnu/gcj/runtime/natSharedLibLoader.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natSharedLibLoader.cc -fPIC -DPIC -o gnu/gcj/runtime/.libs/natSharedLibLoader.o
/maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natSharedLibLoader.cc: In
member function `virtual void
gnu::gcj::runtime::SharedLibLoader::init(JArray<jbyte>*, __java_int)':
/maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natSharedLibLoader.cc:61: warning: unused
variable `const char*msg'
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libsupc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/backward -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/testsuite -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src -L/maat/heart/tbox/native/build/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/maat/heart/tbox/objs/i686-pc-linux-gnu/bin/ -B/maat/heart/tbox/objs/i686-pc-linux-gnu/lib/ -isystem /maat/heart/tbox/objs/i686-pc-linux-gnu/include -DHAVE_CONFIG_H -I. -I/maat/heart/tbox/cvs-gcc/gcc/libjava -I./include -I./gcj -I/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbox/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boe!
hm-gc/include -DSILENT=1 -DNO_SIGNALS=1 -DNO_EXECUTE_PERMISSION=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1 -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/libltdl -I/maat/heart/tbox/cvs-gcc/gcc/libjava/.././libjava/../gcc -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../zlib -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../libffi/include -I../libffi/include -fno-rtti -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -DPREFIX=\"/maat/heart/tbox/objs\" -g -O2 -D_GNU_SOURCE -MD -MT gnu/gcj/runtime/natSharedLibLoader.lo -MF gnu/gcj/runtime/natSharedLibLoader.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/gnu/gcj/runtime/natSharedLibLoader.cc -o gnu/gcj/runtime/natSharedLibLoader.o >/dev/null 2>&1
make[3]: *** [gnu/gcj/runtime/natSharedLibLoader.lo] Error 1
make[3]: Leaving directory `/maat/heart/tbox/native/build/i686-pc-linux-gnu/libjava'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/maat/heart/tbox/native/build/i686-pc-linux-gnu/libjava'
make[1]: *** [all-target-libjava] Error 2
make[1]: Leaving directory `/maat/heart/tbox/native/build'
make: *** [bootstrap] Error 2
+ '[' -s gcc/.bad_compare ']'
+ exit 1
-------------- next part --------------
--
Geoffrey Keating <regress@maat.cygnus.com>
(via an automated GCC regression-testing script.)
More information about the Gcc-regression
mailing list