diff options
author | Ian Lance Taylor <iant@google.com> | 2012-12-21 15:59:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-12-21 15:59:27 +0000 |
commit | 3ff15c3be3a3ebeade100538cd6c022154ead68f (patch) | |
tree | bc9ea105125006116a605d64dc266f40d61b90da /gcc/go/go-system.h | |
parent | b1ad2a2add33d65405957f46ed09410513ccc1d5 (diff) | |
download | gcc-3ff15c3be3a3ebeade100538cd6c022154ead68f.zip gcc-3ff15c3be3a3ebeade100538cd6c022154ead68f.tar.gz gcc-3ff15c3be3a3ebeade100538cd6c022154ead68f.tar.bz2 |
re PR bootstrap/54659 (Bootstrap with --disable-nls broken under Windows)
PR bootstrap/54659
compiler: Don't include <gmp.h>, now included by go-system.h.
* go-system.h: Don't include <cstdio>.
From-SVN: r194669
Diffstat (limited to 'gcc/go/go-system.h')
-rw-r--r-- | gcc/go/go-system.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/go/go-system.h b/gcc/go/go-system.h index 2decc55..85160cd 100644 --- a/gcc/go/go-system.h +++ b/gcc/go/go-system.h @@ -125,15 +125,6 @@ struct hash<T*> // system.h. #include <iostream> -// Some versions of gmp.h assume that #include <iostream> will define -// std::FILE. This is not true with libstdc++ 4.3 and later. This is -// fixed in GMP 4.3, but at this point we don't know which version of -// GMP is in use. Since the top level configure script accepts GMP -// 4.2, at least for now we #include <cstdio> to ensure that GMP 4.2 -// will work. FIXME: This can be removed when we require GMP 4.3 or -// later. -#include <cstdio> - #include "system.h" #include "ansidecl.h" #include "coretypes.h" |