Failure to bootstrap for trunk on i686-pc-linux-gnu

Autocrasher autocrasher@devphil.com
Wed Nov 24 21:48:00 GMT 2004


The tree has failed during the bootstrap step.  The last 30 lines of
the log are below; since I do parallel builds, the error may not be on the
last line.


Attached are the ChangeLogs since the previous run.  Possibly a patch with
your name on it has caused the problem(s).


The full transcript is at http://www.devphil.com/build/
Specific problem logs at http://www.devphil.com/build/reports/tests-trunk/
(explanations of each file are on the main page; you probably want summary*)

Host was an athlon-xp (i686) system.  Target was specified as i686-pc-linux-gnu.

This particular run used standard (previously installed) binutils.

This email is generated by a machine, not sent from a person.  If you think
it's been sent to you in error, please see the gcc-regression list archives
for possible followup discussion; this could be legitimate or it could be a
false positive.  Also watch for email from the other regression testers and
check the logs from the known autobuilders.

If you write a response, please respect the Reply-To: header.


With love,
The Autocrasher (Phil's Builder Bot, version 2.1)

=========================================================================
-------------- next part --------------
diff -u1r previous/CL/gcc/ChangeLog broken/CL/gcc/ChangeLog
--- previous/CL/gcc/ChangeLog	2004-11-24 01:40:04.000000000 -0500
+++ broken/CL/gcc/ChangeLog	2004-11-24 16:10:05.000000000 -0500
@@ -1 +1,214 @@
+2004-11-24  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+	* tree-sra.c (sra_walk_modify_expr): Handle RHS first, then LHS.
+
+	* tree-inline.c (copy_body_r): Explicitly copy a constant if the
+	type will be remapped.
+
+2004-11-24  Steven Bosscher  <stevenb@suse.de>
+
+	* c-opts.c (c_common_post_options): Don't clear
+	flag_inline_functions.
+	* dojump.c (clear_pending_stack_adjust): Remove check on
+	flag_inline_functions, it's always true.
+	* config/alpha/alpha.md (movdi_er_maybe_g): Remove splitter
+	that can never trigger.
+	* config/c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): Don't look at
+	flag_inline_trees, now that flag_inline_functions is never
+	cleared.
+	* config/pdp11/pdp11.h (OPTIMIZATION_OPTIONS): Don't set
+	flag_inline_functions at optimization levels greater than
+	or equal to 3.  This is already done by default.
+
+2004-11-24  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-outof-ssa.c (eliminate_build): Use g->e->dest_idx
+	instead to find the PHI argument.  Do not take I as an
+	argument.
+	(eliminate_phi): Adjust the call to eliminate_build.  Do not
+	take I as an argument.
+	(rewrite_trees): Adjust the call to eliminate_phi.
+
+2004-11-24  Richard Sandiford  <rsandifo@redhat.com>
+
+	* optabs.h (force_expand_binop): Declare.
+	* optabs.c (force_expand_binop): Export.
+	* stmt.c (shift_return_value): Delete.
+	(expand_return): Don't call it.
+	* expr.h (shift_return_value): Declare.
+	* calls.c (shift_returned_value): Delete in favor of...
+	(shift_return_value): ...this new function.  Leave the caller to check
+	for non-BLKmode values passed in the msb of a register.  Take said mode
+	and a shift direction as argument.  Operate on the hard function value,
+	not a pseudo.
+	(expand_call): Adjust accordingly.
+	* function.c (expand_function_start): If a non-BLKmode return value
+	is padded at the last significant end of the return register, use the
+	return value's natural mode for the DECL_RESULT, not the mode of the
+	padded register.
+	(expand_function_end): Shift the same sort of return values left by
+	the appropriate amount.
+
+2004-11-24  Matt Austern  <austern@apple.com>
+
+	* recog.c (recog_memoized_1): Remove.
+	* recog.h (recog_memoized_1): Remove declaration.
+	(recog_memoized): Change from macro to inline function.
+	
+2004-11-24  Devang Patel  <dpatel@apple.com>
+
+	PR/18555
+	* gcc.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Add isysroot.
+	* config/darwin-c.c (darwin_register_frameworks): Use sysroot.
+
+2004-11-24  Devang Patel  <dpatel@apple.com>
+
+	* gcc.c (process_command): Supply -v to linker.
+	
+2004-11-24  David Edelsohn  <edelsohn@gnu.org>
+	    Paolo Bonzini  <bonzini@gnu.org>
+
+	* config/rs6000/rs6000.c (rs6000_return_in_memory): Allow Altivec
+	vector modes without ALTIVEC_ABI.  Use GCC vector instead of
+	synthetic vector.
+	(rs6000_pass_by_reference): Split conditional into pieces.  Use
+	GCC vector instead of synthetic vector.
+
+2004-11-24  Aldy Hernandez  <aldyh@redhat.com>
+
+	* tree.c (recompute_tree_invarant_for_addr_expr): The address of a
+	thread-local variable is invariant.
+
+2004-11-24  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+	* tree-pretty-print.c (dump_generic_node, case POINTER_TYPE):
+	Handle TYPE_REF_CAN_ALIAS_ALL.
+	(print_declaration): Print array dimensions like dump_generic_node.
+
+	* fold-const.c (operand_equal_p): Remove kludge allowing ARG0 and
+	ARG1 to be null; instead define OP_SAME and OP_SAME_NULL and use them.
+
+2004-11-24  Nathan Sidwell  <nathan@codesourcery.com>
+
+	* bitmap.c (INLINE): Do not define.
+	(bitmap_elem_to_freelist, bitmap_element_free,
+	bitmap_element_allocate, bitmap_clear, bitmap_element_zerop,
+	bitmap_element_link, bitmap_find_bit): Use inline keyword/macro.
+
+2004-11-24  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-ssa-dom.c (cprop_into_successor_phis): Remove code to
+	find the index of a PHI argument.  Use e->dest_idx instead.
+	Replace hint with index.
+
+	* tree-ssa-dom.c (cprop_into_successor_phis): Replace index
+	with indx.
+
+2004-11-24  Diego Novillo  <dnovillo@redhat.com>
+
+	* tree-ssa-alias.c (merge_pointed_to_info): Fix comment
+	regarding PT_MALLOC.
+
+2004-11-24  Joseph Myers  <joseph@codesourcery.com>
+
+	* config/i386/i386.c (optimization_options): Use
+	SUBTARGET_OPTIMIZATION_OPTIONS.
+	* config/i386/sol2-10.h (SUBTARGET_OPTIMIZATION_OPTIONS): Define.
+	(TARGET_SUBTARGET_DEFAULT): Don't include
+	MASK_OMIT_LEAF_FRAME_POINTER.
+
+2004-11-24  Mark Mitchell  <mark@codesourcery.com>
+
+	* config/i386/sol2.h (X86_FILE_START_VERSION_DIRECTIVE): 
+	Define to false.
+
+2004-11-24  Joseph Myers  <joseph@codesourcery.com>
+
+	* config/i386/t-sol2-10 (MULTILIB_DIRNAMES, MULTILIB_OSDIRNAMES):
+	Use amd64 instead of 64.
+
+2004-11-24  Mark Mitchell  <mark@codesourcery.com>
+            Joseph Myers  <joseph@codesourcery.com>
+
+	* crtstuff.c (IN_LIBGCC2): Define it.
+	(EH_FRAME_SECTION_CONST): Check EH_TABLES_CAN_BE_READ_ONLY
+	instead of HAVE_LD_RO_RW_SECTION_MIXING.
+	* defaults.h (EH_TABLES_CAN_BE_READ_ONLY): New macro.
+	* dwarf2out.c (named_section_eh_frame_section): Check
+	EH_TABLES_CAN_BE_READ_ONLY.
+	* except.c (default_exception_section): Likewise.
+	* config/i386/sol2.h (EH_TABLES_CAN_BE_READ_ONLY): Define.
+	* doc/tm.texi (EH_TABLES_CAN_BE_READ_ONLY): Document.
+
+2004-11-24  Kazu Hirata  <kazu@cs.umass.edu>
+
+	* tree-ssa-pre.c (phi_translate): Use find_edge to find the
+	index of a PHI argument.
+
+	* tree-ssa-loop-manip.c (lv_adjust_loop_header_phi): Use
+	find_edge to find the index of a PHI argument.
+
+2004-11-24  Steven Bosscher  <stevenb@suse.de>
+
+	* expr.c (expand_expr_real_1): Remove cases for EXIT_BLOCK_EXPR 
+	and LABELED_BLOCK_EXPR.
+	* gimplify.c (gimplify_labeled_block_expr): Remove.
+	(gimplify_exit_block_expr): Remove.
+	(gimplify_expr): Don't call them.
+	* tree-inline.c (copy_body_r): Don't handle EXIT_BLOCK_EXPR
+	and LABELED_BLOCK_EXPR.
+	(estimate_num_insns_1): Likewise.
+	(walk_tree): Likewise.
+	* tree-pretty-print.c (dump_generic_node): Don't handle
+	EXIT_BLOCK_EXPR and LABELED_BLOCK_EXPR.
+	* tree.def (EXIT_BLOCK_EXPR): Moved to java-tree.def.
+	(LABELED_BLOCK_EXPR): Likewise.
+	* tree.h (LABELED_BLOCK_LABEL): Moved to java-tree.h.
+	(LABELED_BLOCK_BODY): Likewise.
+	(EXIT_BLOCK_LABELED_BLOCK): Likewise.
+	(EXIT_BLOCK_RETURN): Removed.
+
+2004-11-24  Steven Bosscher  <stevenb@suse.de>
+
+	* cfgrtl.c (rtl_delete_block): Fix comment.
+	* emit-rtl.c (remove_unnecessary_notes): Die if we see BLOCK_BEG
+	or BLOCK_END insn notes.
+	* jump.c (squeeze_notes): Likewise.
+	* haifa-sched.c (reemit_notes): Don't "re-emit" EH_REGION_BEG and
+	EH_REGION_END notes, we never have them to begin with.
+	* sched-deps.c (sched_analyze_insn): When updating loop notes,
+	verify that we have indeed only recorded loop notes.
+	(sched_analyze): Die if we see EH_REGION_BEG or EH_REGION_END notes.
+	Only record loop notes.
+
+	* cfgexpand.c (tree_expand_cfg): Fix comment.
+
+	* passes.c (rest_of_compilation): Don't do a second call to
+	convert_from_eh_region_ranges from here, it's already called
+	from cfgexpand.c.
+	* except.c (resolve_fixup_regions): Remove.
+	(remove_fixup_regions): Remove.
+	(convert_from_eh_region_ranges_1): Remove.
+	(convert_from_eh_region_ranges): Remove the case where EH is
+	not already lowered at the tree level.  We always lower there.
+
+2004-11-24  Paolo Bonzini  <bonzini@gnu.org>
+
+	PR c++/16882
+	* tree.c (make_vector_type): Move qualifiers to the vector type,
+	use the inner type's main variant and build a main variant for
+	the vector type if necessary.
+	(type_hash_eq): Check a vector type's TYPE_VECTOR_SUBPARTS.
+
+2004-11-24  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+	* target.h (late_rtl_prologue_epilogue): Remove.
+	* target-def.h (TARGET_LATE_RTL_PROLOGUE_EPILOGUE): Remove.
+	* system.h: Poison TARGET_LATE_RTL_PROLOGUE_EPILOGUE.
+	* passes.c (rest_of_handle_prologue_epilogue): Remove and move
+	remaining bits to...
+	(rest_of_handle_flow2): ...here.
+	(rest_of_compilation): Remove call to rest_of_handle_prologue_epilogue.
+	* doc/tm.texi (TARGET_LATE_RTL_PROLOGUE_EPILOGUE): Remove.
+
 2004-11-23  Mark Mitchell  <mark@codesourcery.com>
@@ -47,3 +260,3 @@
 2004-11-23  Daniel Jacobowitz  <dan@codesourcery.com>
-            Joseph Myers  <joseph@codesourcery.com>
+	    Joseph Myers  <joseph@codesourcery.com>
 
@@ -286,2 +499,7 @@
 
+2004-11-22  Nick Clifton  <nickc@redhat.com>
+
+	* sbitmap.c (sbitmap_union_of_preds): Remove redundant
+	initialisation of 'e'.
+
 2004-11-22  Roger Sayle  <roger@eyesopen.com>
diff -u1r previous/CL/gcc/cp/ChangeLog broken/CL/gcc/cp/ChangeLog
--- previous/CL/gcc/cp/ChangeLog	2004-11-24 01:40:16.000000000 -0500
+++ broken/CL/gcc/cp/ChangeLog	2004-11-24 16:10:18.000000000 -0500
@@ -1 +1,33 @@
+2004-11-24  Steven Bosscher  <stevenb@suse.de>
+
+	* decl.c (cxx_init_decl_processing): Don't clear
+	flag_inline_functions.
+
+2004-11-24  Mark Mitchell  <mark@codesourcery.com>
+
+	* pt.c (tsubst_function_type): Do not permit function types which
+	return arrays or functions.
+
+	PR c++/18586
+	* parser.c (cp_parser_init_declarator): Do not pop scope twice.
+
+	PR c++/18530
+	* cp-tree.h (CTOR_NAME): Remove.
+	(DTOR_NAME): Remove.
+	* decl.c (initialize_predefined_identifiers): Add spaces to the
+	end of constructor and destructor names.
+
+2004-11-24  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
+
+	PR c++/8929
+	* decl.c (start_decl): Check for invalid specialization headers.
+
+2004-11-24  Paolo Bonzini  <bonzini@gnu.org>
+
+	PR c++/16882
+
+	* call.c (standard_conversion): Move check for conversions between
+	vector pointers...
+	* typeck.c (ptr_reasonably_similar): ... here.
+
 2004-11-23  Ben Elliston  <bje@au.ibm.com>
diff -u1r previous/CL/gcc/fortran/ChangeLog broken/CL/gcc/fortran/ChangeLog
--- previous/CL/gcc/fortran/ChangeLog	2004-11-20 01:40:14.000000000 -0500
+++ broken/CL/gcc/fortran/ChangeLog	2004-11-24 16:10:20.000000000 -0500
@@ -1 +1,5 @@
+2004-11-24  Steven Bosscher  <stevenb@suse.de>
+
+	* options.c (gfc_post_options): Don't clear flag_inline_functions.
+
 2004-11-20  Steven G. Kargl  <kargls@comcast.net>
diff -u1r previous/CL/gcc/testsuite/ChangeLog broken/CL/gcc/testsuite/ChangeLog
--- previous/CL/gcc/testsuite/ChangeLog	2004-11-24 01:40:19.000000000 -0500
+++ broken/CL/gcc/testsuite/ChangeLog	2004-11-24 16:10:21.000000000 -0500
@@ -1 +1,39 @@
+2004-11-24  Richard Sandiford  <rsandifo@redhat.com>
+
+	* gcc.c-torture/execute/20041124-1.c: New test.
+
+2004-11-24  Mark Mitchell  <mark@codesourcery.com>
+
+	* g++.dg/template/deduce3.C: New test. 
+
+	PR c++/18586
+	* g++.dg/template/crash27.C: New test. 
+
+	PR c++/18530
+	* g++.dg/warn/Wshadow-3.C: New test.
+
+2004-11-24  Devang Patel  <dpatel@apple.com>
+
+	PR/18555
+	* gcc.dg/cpp/isysroot-1.c: New test.
+	* gcc.dg/cpp/usr/include/stdio.h: New file.
+	* gcc.dg/cpp/isysroot-2.c: New test.
+	* gcc.dg/cpp/System/Library/Framework/Carbon.framework/Headers/Carbon.h:
+	New file.
+
+2004-11-24  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
+
+	PR c++/8929
+	* g++.old-deja/g++.oliva/template10.C: Remove xfail.
+
+2004-11-24  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+	* gcc.target/sparc/align.c: Do not include <stdint.h>.
+	* gcc.target/sparc/pdist.c: Likewise.
+
+2004-11-24  Paolo Bonzini  <bonzini@gnu.org>
+
+	PR c++/16882
+	* g++.dg/conversion/simd1.C: New test.
+
 2004-11-23  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
diff -u1r previous/CL/libcpp/ChangeLog broken/CL/libcpp/ChangeLog
--- previous/CL/libcpp/ChangeLog	2004-11-24 01:40:53.000000000 -0500
+++ broken/CL/libcpp/ChangeLog	2004-11-24 16:10:31.000000000 -0500
@@ -1 +1,8 @@
+2004-11-24  Roger Sayle  <roger@eyesopen.com>
+
+	PR preprocessor/15824
+	* configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
+	directly, instead of the non-existant "system.h" and "ansidecl.h".
+	* configure: Regenerate.
+
 2004-11-23  Daniel Jacobowitz  <dan@codesourcery.com>
-------------- next part --------------
/bin/sh ../libtool --tag CXX --mode=compile /mnt/build/build-2004-11-24-161001-trunk/gcc/xgcc -shared-libgcc -B/mnt/build/build-2004-11-24-161001-trunk/gcc/ -nostdinc++ -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/bin/ -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/lib/ -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/include -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/sys-include  -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include -I/home/pme/src/trunk/libstdc++-v3/libsupc++ -O2 -g -O2 -g -O2 -D_GNU_SOURCE -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual  -fdiagnostics-show-location=once  -ffunction-sections -fdata-sections  -c -o c++locale.lo c++locale.cc
/mnt/build/build-2004-11-24-161001-trunk/gcc/xgcc -shared-libgcc -B/mnt/build/build-2004-11-24-161001-trunk/gcc/ -nostdinc++ -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/bin/ -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/lib/ -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/include -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/sys-include -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include -I/home/pme/src/trunk/libstdc++-v3/libsupc++ -O2 -g -O2 -g -O2 -D_GNU_SOURCE -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -c c++locale.cc  -fPIC -DPIC -o .libs/c++locale.o
/mnt/build/build-2004-11-24-161001-trunk/gcc/xgcc -shared-libgcc -B/mnt/build/build-2004-11-24-161001-trunk/gcc/ -nostdinc++ -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/bin/ -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/lib/ -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/include -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/sys-include -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include/i686-pc-linux-gnu -I/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/include -I/home/pme/src/trunk/libstdc++-v3/libsupc++ -O2 -g -O2 -g -O2 -D_GNU_SOURCE -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -c c++locale.cc -o c++locale.o >/dev/null 2>&1
cp /home/pme/src/trunk/libstdc++-v3/config/linker-map.gnu ./libstdc++-symbol.ver
if test "x" != x; then \
  sed -n '1,/DO NOT DELETE/p' libstdc++-symbol.ver > tmp.top; \
  sed -n '/DO NOT DELETE/,$p' libstdc++-symbol.ver > tmp.bottom; \
  cat tmp.top  tmp.bottom > libstdc++-symbol.ver; \
  rm tmp.top tmp.bottom; \
fi
/bin/sh ../libtool --tag CXX --mode=link /mnt/build/build-2004-11-24-161001-trunk/gcc/xgcc -shared-libgcc -B/mnt/build/build-2004-11-24-161001-trunk/gcc/ -nostdinc++ -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/bin/ -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/lib/ -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/include -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/sys-include -Wl,-O1   -fno-implicit-templates -Wall -Wextra -Wwrite-strings -Wcast-qual  -fdiagnostics-show-location=once  -ffunction-sections -fdata-sections   -o libstdc++.la -rpath /mnt/build/install-2004-11-24-161001-trunk/lib -version-info 6:4:0 -Wl,--version-script=libstdc++-symbol.ver -lm  bitmap_allocator.lo pool_allocator.lo mt_allocator.lo codecvt.lo complex_io.lo ctype.lo debug.lo debug_list.lo functexcept.lo globals_locale.lo globals_io.lo ios.lo ios_failure.lo ios_init.lo ios_locale.lo limits.lo list.lo locale.lo locale_init.lo locale_facets.lo localename.lo stdexcept.lo strstream.lo tree.lo allocator-inst.lo concept-inst.lo fstream-inst.lo ext-inst.lo io-inst.lo istream-inst.lo istream.lo locale-inst.lo locale-misc-inst.lo misc-inst.lo ostream-inst.lo sstream-inst.lo streambuf-inst.lo streambuf.lo string-inst.lo valarray-inst.lo wlocale-inst.lo wstring-inst.lo atomicity.lo codecvt_members.lo collate_members.lo ctype_members.lo messages_members.lo monetary_members.lo numeric_members.lo time_members.lo basic_file.lo c++locale.lo ../libmath/libmath.la ../libsupc++/libsupc++convenience.la -lm 
/mnt/build/build-2004-11-24-161001-trunk/gcc/xgcc -shared-libgcc -B/mnt/build/build-2004-11-24-161001-trunk/gcc/ -nostdinc++ -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/bin/ -B/mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/lib/ -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/include -isystem /mnt/build/install-2004-11-24-161001-trunk/i686-pc-linux-gnu/sys-include -shared -nostdlib /usr/lib/crti.o /mnt/build/build-2004-11-24-161001-trunk/gcc/crtbeginS.o  .libs/bitmap_allocator.o .libs/pool_allocator.o .libs/mt_allocator.o .libs/codecvt.o .libs/complex_io.o .libs/ctype.o .libs/debug.o .libs/debug_list.o .libs/functexcept.o .libs/globals_locale.o .libs/globals_io.o .libs/ios.o .libs/ios_failure.o .libs/ios_init.o .libs/ios_locale.o .libs/limits.o .libs/list.o .libs/locale.o .libs/locale_init.o .libs/locale_facets.o .libs/localename.o .libs/stdexcept.o .libs/strstream.o .libs/tree.o .libs/allocator-inst.o .libs/concept-inst.o .libs/fstream-inst.o .libs/ext-inst.o .libs/io-inst.o .libs/istream-inst.o .libs/istream.o .libs/locale-inst.o .libs/locale-misc-inst.o .libs/misc-inst.o .libs/ostream-inst.o .libs/sstream-inst.o .libs/streambuf-inst.o .libs/streambuf.o .libs/string-inst.o .libs/valarray-inst.o .libs/wlocale-inst.o .libs/wstring-inst.o .libs/atomicity.o .libs/codecvt_members.o .libs/collate_members.o .libs/ctype_members.o .libs/messages_members.o .libs/monetary_members.o .libs/numeric_members.o .libs/time_members.o .libs/basic_file.o .libs/c++locale.o -Wl,--whole-archive ../libmath/.libs/libmath.a ../libsupc++/.libs/libsupc++convenience.a -Wl,--no-whole-archive  -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src -L/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src/.libs -lm ../libmath/.libs/libmath.a -lm ../libsupc++/.libs/libsupc++convenience.a -lm -L/mnt/build/build-2004-11-24-161001-trunk/gcc -lgcc_s -lc -lgcc_s -lgcc_s -lc -lgcc_s -lm -lgcc_s -lc -lgcc_s -lgcc_s -lc -lgcc_s   /mnt/build/build-2004-11-24-161001-trunk/gcc/crtendS.o /usr/lib/crtn.o /usr/lib/crti.o /mnt/build/build-2004-11-24-161001-trunk/gcc/crtbeginS.o /mnt/build/build-2004-11-24-161001-trunk/gcc/crtendS.o /usr/lib/crtn.o  -Wl,-O1 -Wl,--version-script=libstdc++-symbol.ver -Wl,-soname -Wl,libstdc++.so.6 -o .libs/libstdc++.so.6.0.4
/usr/lib/crti.o(.init+0x0): In function `_init':
/home/gotom/debian/glibc/cvs/build.local/glibc_2.3.2.ds1-18.test3/glibc-2.3.2.ds1/build-tree/i386-libc/csu/crti.S:12: multiple definition of `_init'
/usr/lib/crti.o(.init+0x0):/home/gotom/debian/glibc/cvs/build.local/glibc_2.3.2.ds1-18.test3/glibc-2.3.2.ds1/build-tree/i386-libc/csu/crti.S:12: first defined here
/usr/lib/crti.o(.fini+0x0): In function `_fini':
: multiple definition of `_fini'
/usr/lib/crti.o(.fini+0x0): first defined here
/mnt/build/build-2004-11-24-161001-trunk/gcc/crtbeginS.o(.data.rel+0x0): multiple definition of `__dso_handle'
/mnt/build/build-2004-11-24-161001-trunk/gcc/crtbeginS.o(.data.rel+0x0): first defined here
collect2: ld returned 1 exit status
make[4]: *** [libstdc++.la] Error 1
make[4]: Leaving directory `/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/mnt/build/build-2004-11-24-161001-trunk/i686-pc-linux-gnu/libstdc++-v3'
make[1]: *** [all-target-libstdc++-v3] Error 2
make[1]: Leaving directory `/mnt/build/build-2004-11-24-161001-trunk'
make: *** [bootstrap] Error 2


More information about the Gcc-regression mailing list