diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-05-30 15:32:34 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2007-05-30 15:32:34 +0200 |
commit | 9cc1244e762b1cab9245e54a3061e12950c3b8f1 (patch) | |
tree | ef9039e3f5a8e3776c2f155d9e8ab48861bd97db /configure | |
parent | 1896570321ab490f506b885e18c76c41d0f5e4bf (diff) | |
download | gcc-9cc1244e762b1cab9245e54a3061e12950c3b8f1.tar.gz |
re PR bootstrap/29382 (Bootstrap comparison failure!)
PR bootstrap/29382
* configure.in: Don't use -fkeep-inline-functions for GCC < 3.3.1.
* configure: Rebuilt.
From-SVN: r125182
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure index 6e989c29a52..13425f3e04e 100755 --- a/configure +++ b/configure @@ -11464,6 +11464,12 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ +#if (__GNUC__ < 3) \ + || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 \ + || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ < 1))) +#error http://gcc.gnu.org/PR29382 +#endif + int main () { |