On Thu, Jul 14, 2011 at 12:09 PM, Rainer Orth <r...@cebitec.uni-bielefeld.de> wrote: > Andreas Schwab <sch...@redhat.com> writes: > >> Same on ia64: >> >> Configuration mismatch! >> Extra parts from gcc directory: crtbegin.o crtbeginS.o crtend.o crtendS.o >> Extra parts from libgcc: crtbegin.o crtend.o crtbeginS.o crtendS.o >> crtfastmath.o
Alpha needs the same fix. I need following patch to bootstrap the compiler: --cut here-- Index: gcc/config.gcc =================================================================== --- gcc/config.gcc (revision 176282) +++ gcc/config.gcc (working copy) @@ -757,6 +757,7 @@ extra_options="${extra_options} alpha/elf.opt" target_cpu_default="MASK_GAS" tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee alpha/t-linux" + extra_parts="$extra_parts crtfastmath.o" ;; alpha*-*-freebsd*) tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h" --cut here-- Uros.