This is the mail archive of the gcc-regression@gcc.gnu.org mailing list for the GCC project.


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

GCC build failed with your patch on 2001-05-02T02:20:01Z.


With your recent patch, GCC does not compile on at least one platform.
Attached is build output for platforms where there were build
failures.  Also attached is a diff of the ChangeLog entries since the
last time the regression tests passed, on 2001-05-01T12:50:01Z.

The last time the regression tests were run, GCC did not compile either,
so the problem might not be caused by your patch.

For more information, see <http://www.cygnus.com/~geoffk/gcc-regression/>.
--- /maat/heart/tbox/changelog_pass/gcc/gcc/ChangeLog	Tue May  1 05:50:13 2001
+++ gcc/gcc/ChangeLog	Tue May  1 19:20:12 2001
@@ -1,3 +1,73 @@
+2001-05-01  Per Bothner  <per@bothner.com>
+
+	* expr.c (expand_expr):  When compiling LABELED_BLOCK_EXPR,
+	call do_pending_stack_adjust before emiting label.
+
+2001-05-01  Mark Mitchell  <mark@codesourcery.com>
+
+	* extend.texi: Fix typo.
+
+2001-05-01  Stan Shebs  <shebs@apple.com>
+
+	* objc/objc-act.c (build_module_descriptor): Clear DECL_CONTEXT
+	of UOBJC_MODULES_decl.
+	(generate_strings): Clear DECL_CONTEXT of new decl nodes.
+	(generate_descriptor_table): Ditto.
+	(generate_protocols): Ditto.
+	(generate_protocol_list): Ditto.
+	(generate_classref_translation_entry): Ditto.
+
+2001-05-01  Jeffrey Oldham  <oldham@codesourcery.com>
+
+	* invoke.texi (Optimize Options): Add documentation for `--param
+	max-delay-slot-insn-search' and `--param
+	max-delay-slot-live-search' and reorder --param section.
+	* params.def: Modify initial comment.
+	* params.h (param_info): Add `help' member.
+	* toplev.c (lang_independent_params): Include `help' description.
+	(display_help): Print --param parameters.
+
+2001-05-01  Zack Weinberg  <zackw@stanford.edu>
+
+	* config.gcc: Don't default xmake_file to ${cpu_type}/x-${cpu_type}.
+	Remove references to deleted files.
+	(*-*-openbsd): No need to override xmake_file.
+	(*-*-sysv4): Treat like *-*-sysv.
+
+	* configure.in: Probe for ldopen in various places, and set up
+	collect2 to be linked with them if found.
+	Don't dink with Windows registry stuff unless $host_os is a
+	Win32 os name.  Check to see if we need -ladvapi32.
+	* configure: Regenerate.
+
+	* Makefile: Get rid of CLIB and HOST_CLIB.
+	Substitute in COLLECT2_LIBS and link collect2 against its contents.
+	* build-make: Get rid of HOST_CLIB.
+
+	* config/a29k/x-unix, config/alpha/x-osf, config/i386/x-aix,
+	config/i386/x-osfrose, config/m68k/x-dpx2, config/mips/x-iris3,
+	config/mips/x-mips, config/mips/x-osfrose, config/mips/x-sony,
+	config/mips/x-sysv, config/rs6000/x-aix31, config/rs6000/x-aix41,
+	config/rs6000/x-rs6000: Delete.
+
+	* config/i386/x-cygwin, config/m68k/t-aux, config/mips/x-iris:
+	Don't set CLIB.
+
+	24 x-host fragments remain, 0 x-cpu, 3 top level.
+
+2001-05-01  Zack Weinberg  <zackw@stanford.edu>
+
+	* aclocal.m4 (gcc_AC_C_CHAR_BIT): Correct test program.
+	* configure: Regenerate.
+
+2001-05-01  Angela Marie Thomas <angela@cygnus.com>
+
+	* Makefile.in (install-headers): Remove redundant dependency.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* c-tree.texi (USING_STMT): Document.
+
 2001-05-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
 	* bitmap.c: Change NULL_PTR to NULL or "(rtx*)0".
--- /maat/heart/tbox/changelog_pass/gcc/gcc/cp/ChangeLog	Tue May  1 05:50:19 2001
+++ gcc/gcc/cp/ChangeLog	Tue May  1 07:30:12 2001
@@ -1,5 +1,14 @@
 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
 
+	* cp-tree.def (USING_STMT): New statement node.
+	* cp-tree.h (USING_STMT_NAMESPACE): New macro.
+	* decl2.c (do_using_directive): Add USING_STMT to statement
+	tree. Don't emit errors when processing template decl.
+	* pt.c (tsubst_expr, USING_STMT case): New case.
+	* semantics.c (cp_expand_stmt, USING_STMT case): New case.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
 	* call.c (build_new_op): Convert args from reference here.
 	(build_conditional_expr): Don't convert here.
 
--- /maat/heart/tbox/changelog_pass/gcc/gcc/java/ChangeLog	Sun Apr 29 04:30:11 2001
+++ gcc/gcc/java/ChangeLog	Tue May  1 15:30:11 2001
@@ -1,3 +1,19 @@
+2001-05-01  Tom Tromey  <tromey@redhat.com>
+
+	* Make-lang.in ($(srcdir)/java/gcj.info): Added `-I..'.
+	(java/gcj.dvi): Added $(srcdir) to TEXINPUTS.
+	* gcj.texi: Updated copyright text.  Include fdl.texi.
+	(Top): Link to new node.
+
+2001-05-01  Per Bothner  <per@bothner.com>
+
+	* parse.h (REGISTER_IMPORT):  Use tree_cons instead of chainon.
+
+2001-05-01  Per Bothner  <per@bothner.com>
+
+	* parse.y (java_pop_parser_context):  The TREE_VALUE of a link in the
+	import_list contains the name, not the TREE_PURPOSE.
+
 2001-04-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
 	* jcf-io.c (read_zip_member): Cast to long in comparison with
--- /maat/heart/tbox/changelog_pass/gcc/gcc/testsuite/ChangeLog	Tue May  1 05:50:20 2001
+++ gcc/gcc/testsuite/ChangeLog	Tue May  1 07:30:14 2001
@@ -1,5 +1,9 @@
 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
 
+	* g++.old-deja/g++.ns/template17.C: New test.
+
+2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
+
 	* g++.old-deja/g++.pt/ref4.C: New test.
 
 2001-04-30  Richard Henderson  <rth@redhat.com>
--- /maat/heart/tbox/changelog_pass/gcc/libstdc++-v3/ChangeLog	Mon Apr 30 17:20:18 2001
+++ gcc/libstdc++-v3/ChangeLog	Tue May  1 19:20:14 2001
@@ -1,3 +1,15 @@
+2001-05-01  Tom Browder  <tbrowder@home.com>
+
+	* docs/html/ext/howto.html:  Fix typo.
+
+2001-05-01  Gabriel Dos Reis  <gdr@codesourcery.com>
+
+	* testsuite/libstdc++.tests/tests.exp: Add comment.
+
+2001-05-01  Gabriel Dos Reis  <gdr@codesourcery.com>
+
+	* testsuite/libstdc++.tests/tests.exp: Set ulimits.
+
 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
 
 	* porting.texi: Use the GFDL.
--- /maat/heart/tbox/changelog_pass/gcc/boehm-gc/ChangeLog	Wed Apr 25 21:50:10 2001
+++ gcc/boehm-gc/ChangeLog	Tue May  1 15:30:10 2001
@@ -1,3 +1,8 @@
+2001-05-01  Jeffrey Oldham  <oldham@codesourcery.com>
+
+	* gc_priv.h (UNLOCK): Change type of GC_noop1 argument.
+	(GC_noop1): Change declaration to take one argument.
+
 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
 
 	* configure.in: Obtain THREADS with `gcc -v'.
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbo!
x/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc -I./../boehm-gc -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -Wp,-MD,.deps/jni.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/jni.cc -o jni.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/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/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 -I./../boehm-gc  -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES  -ffloat-store  -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -c /maat/heart/tbox/cvs-gcc/gcc/libjava/exception.cc
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbo!
x/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc -I./../boehm-gc -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -Wp,-MD,.deps/exception.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/exception.cc  -fPIC -DPIC -o .libs/exception.o
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbo!
x/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc -I./../boehm-gc -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -Wp,-MD,.deps/exception.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/exception.cc -o exception.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/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/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 -I./../boehm-gc  -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES  -ffloat-store  -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -c /maat/heart/tbox/cvs-gcc/gcc/libjava/resolve.cc
/maat/heart/tbox/native/build/gcc/g++ -B/maat/heart/tbox/native/build/gcc/ -nostdinc++ -nostdinc++ -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/std -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/include/c_std -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/native/build/i686-pc-linux-gnu/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libio -I/maat/heart/tbox/cvs-gcc/gcc/libstdc++-v3/libmath -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/maat/heart/tbox/cvs-gcc/gcc/libjava -Iinclude -I/maat/heart/tbo!
x/cvs-gcc/gcc/libjava/include -I/maat/heart/tbox/cvs-gcc/gcc/libjava/../boehm-gc -I./../boehm-gc -DSILENT=1 -DNO_SIGNALS=1 -DJAVA_FINALIZATION=1 -DGC_GCJ_SUPPORT=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/../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 -fvtable-thunks -fnon-call-exceptions -fdollars-in-identifiers -D__NO_MATH_INLINES -ffloat-store -W -Wall -D_GNU_SOURCE -g -O2 -fvtable-thunks -D_GNU_SOURCE -Wp,-MD,.deps/resolve.pp -c /maat/heart/tbox/cvs-gcc/gcc/libjava/resolve.cc  -fPIC -DPIC -o .libs/resolve.o
/maat/heart/tbox/cvs-gcc/gcc/libjava/resolve.cc: In function `_Jv_word 
   _Jv_ResolvePoolEntry(java::lang::Class*, int)':
/maat/heart/tbox/cvs-gcc/gcc/libjava/resolve.cc:134: Internal compiler error in 
   c_expand_expr, at c-common.c:4271
Please submit a full bug report, with preprocessed source if appropriate.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
make[3]: *** [resolve.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
+ exit 1

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