diff options
author | Diego Novillo <dnovillo@google.com> | 2012-08-16 09:28:13 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2012-08-16 09:28:13 -0400 |
commit | 0c8036f70a641b1821290e0c7f35c5a911a4a77a (patch) | |
tree | cce547740f98c101f61544e0f1425332c9574d32 /gcc/realmpfr.h | |
parent | 01273677143592a20a0c161e3e5e52a478d8fc6d (diff) | |
download | gcc-0c8036f70a641b1821290e0c7f35c5a911a4a77a.zip gcc-0c8036f70a641b1821290e0c7f35c5a911a4a77a.tar.gz gcc-0c8036f70a641b1821290e0c7f35c5a911a4a77a.tar.bz2 |
re PR bootstrap/54281 (Fails to bootstrap with --disable-nls)
2012-08-16 Diego Novillo <dnovillo@google.com>
PR bootstrap/54281
* double-int.h: Move including of gmp.h ...
* system.h: ... here.
* realmpfr.h: Do not include gmp.h.
* tree-ssa-loop-niter.c: Do not include gmp.h.
fortran/ChangeLog
* gfortran.h: Do not include gmp.h.
From-SVN: r190444
Diffstat (limited to 'gcc/realmpfr.h')
-rw-r--r-- | gcc/realmpfr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/realmpfr.h b/gcc/realmpfr.h index ab234e9..ada876e 100644 --- a/gcc/realmpfr.h +++ b/gcc/realmpfr.h @@ -22,7 +22,10 @@ #ifndef GCC_REALGMP_H #define GCC_REALGMP_H -#include <gmp.h> +/* Note that we do not include gmp.h. It is included in system.h + because it wrecks intl.h when compiling in C++ mode. + See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54281 for details. */ + #include <mpfr.h> #include <mpc.h> #include "real.h" |