diff options
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 6 | ||||
-rw-r--r-- | libgcc/Makefile.in | 3 | ||||
-rw-r--r-- | libgcc/gstdint.h | 6 |
3 files changed, 13 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 93c9b799682..a0f379adbf0 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,9 @@ +2008-06-10 Joseph Myers <joseph@codesourcery.com> + + * Makefile.in (DECNUMINC): Remove + -I$(MULTIBUILDTOP)../../libdecnumber. + * gstdint.h: New. + 2008-06-07 Joseph Myers <joseph@codesourcery.com> * config.host (strongarm*-*-*, ep9312*-*-*, xscale-*-*, diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in index 3acf2e856a4..94b6440f011 100644 --- a/libgcc/Makefile.in +++ b/libgcc/Makefile.in @@ -191,8 +191,7 @@ ifeq ($(enable_decimal_float),bid) DECNUMINC = -I$(srcdir)/config/libbid -DENABLE_DECIMAL_BID_FORMAT else DECNUMINC = -I$(srcdir)/../libdecnumber/$(enable_decimal_float) \ - -I$(srcdir)/../libdecnumber \ - -I$(MULTIBUILDTOP)../../libdecnumber + -I$(srcdir)/../libdecnumber endif else DECNUMINC = diff --git a/libgcc/gstdint.h b/libgcc/gstdint.h new file mode 100644 index 00000000000..4d61c318440 --- /dev/null +++ b/libgcc/gstdint.h @@ -0,0 +1,6 @@ +/* This header is only for use of libdecnumber built as part of + libgcc. The targets supported for decimal floating point have + <stdint.h>; libdecnumber uses GCC_HEADER_STDINT only for the sake + of the host. */ + +#include <stdint.h> |