This is the mail archive of the gcc-patches@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] |
Other format: | [Raw text] |
In-tree gmp broke with 124303:124306.
> 2007-04-07 Brooks Moses <brooks.moses@codesourcery.com> > > double-int.c (mpz_set_double_int): Moved from > tree-ssa-loop-niter.c. > (mpz_get_double_int): Likewise. > double-int.h: New prototypes for above.
(Tsk tsk, doesn't mention the new #include gmp.h.)
[...]This bit causes in-tree gmp (where you untar gmp sources in the tree at the top-level and mv gmp-* gmp) to fail, because double-int.h is included in system.h, which is included in configure.ac tests, *but without the necessary -I flags to find gmp.h which isn't even built at this time*. Hence all autoconf tests that #include "system.h" fail, and erroneous fall-back stuff is put in auto-host.h, causing compilation to fail for e.g. genmodes.o:
Configury people, help!
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |