------- Comment #11 from espindola at google dot com 2009-10-09 12:58 ------- > Why all those contortions if there seems to be an easy way out: just use > the GCC_HEADER_STDINT macro from config/m4 and include the resulting (e.g.) > gstdint.h instead of stdint.h?
Interesting. One problem is that this header is also used on gold. Maybe we could do #ifdef HAVE_STDINT_H #include <stdint.h> #elif HAVE_INTTYPES_H #include <inttypes.h> #else #include "gstdint.h" #endif That way gcc would build on anything thanks to GCC_HEADER_STDINT and gold would require something with stdint.h or inttypes.h. > Rainer > Thanks! Rafael -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40790