On Wednesday 03 August 2011 15:32:45 Rainer Orth wrote: > This is the revised/updated version of the patch originally posted at > > [build] Move unwinder to toplevel libgcc > http://gcc.gnu.org/ml/gcc-patches/2011-06/msg01452.html > > and reposted as CFT at > > http://gcc.gnu.org/ml/gcc-patches/2011-07/msg00201.html > > It should incorporate all review comments and a few errors I've noticed > during final review have been corrected. > > I've received approval for the Darwin bits, Steve successfully tested on > HP-UX/IA64 and Linux/IA64 at least bootstrapped. VMS/IA64 approval has > been given conditional on the approval of the other IA64 bits. I've > also received approval for the libjava parts. > > Bootstrapped without regressions (together with the next two, to be > resubmitted shortly: fp-bit and soft-fp moves) on > x86_64-unknown-linux-gnu. > > i386-pc-solaris2.10, sparc-sun-solaris2.11, alpha-dec-osf5.1b, > mips-sgi-irix6.5 and i386-apple-darwin9.8.0 bootstraps in progress. > powerpc-apple-darwin9.8.0 currently broken (SIGBUS compiling > c-family/c-pretty-print.c and cp/call.c). > > How should we proceed with this patch, especially given the quite > moderate comments from most affected target maintainers? > > Thanks. > Rainer
Hello, I suppose it is this patch that breaks bootstrap on 86_64-unknown-freebsd8.2: /home/mik/gcc4x/src/gcc/crtstuff.c:64:28: fatal error: unwind-dw2-fde.h: No such file or directory Fixed by the the following pat^Whack Index: crtstuff.c =================================================================== --- crtstuff.c (révision 177469) +++ crtstuff.c (copie de travail) @@ -61,7 +61,7 @@ #include "tsystem.h" #include "coretypes.h" #include "tm.h" -#include "unwind-dw2-fde.h" +#include "../libgcc/unwind-dw2-fde.h" #ifndef FORCE_CODE_SECTION_ALIGN # define FORCE_CODE_SECTION_ALIGN There is probably something better, but I have no clue. Mikael