aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-05-30 15:32:34 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2007-05-30 15:32:34 +0200
commit9cc1244e762b1cab9245e54a3061e12950c3b8f1 (patch)
treeef9039e3f5a8e3776c2f155d9e8ab48861bd97db
parent1896570321ab490f506b885e18c76c41d0f5e4bf (diff)
downloadgcc-9cc1244e762b1cab9245e54a3061e12950c3b8f1.zip
gcc-9cc1244e762b1cab9245e54a3061e12950c3b8f1.tar.gz
gcc-9cc1244e762b1cab9245e54a3061e12950c3b8f1.tar.bz2
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
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure6
-rw-r--r--configure.ac8
3 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cb9b572..74d559a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-05-30 Jakub Jelinek <jakub@redhat.com>
+
+ PR bootstrap/29382
+ * configure.ac: Don't use -fkeep-inline-functions for GCC < 3.3.1.
+ * configure: Rebuilt.
+
2007-05-28 Roberto Costa <robsettantasei@gmail.com>
* MAINTAINERS (Write After Approval): Removed my name.
diff --git a/configure b/configure
index 6e989c2..13425f3 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 ()
{
diff --git a/configure.ac b/configure.ac
index 9c38fad..6309b6e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2566,7 +2566,13 @@ if test "$GCC" = yes; then
# Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
CFLAGS="$CFLAGS -fkeep-inline-functions"
AC_MSG_CHECKING([whether -fkeep-inline-functions is supported])
- AC_TRY_COMPILE(,,
+ AC_TRY_COMPILE([
+#if (__GNUC__ < 3) \
+ || (__GNUC__ == 3 && (__GNUC_MINOR__ < 3 \
+ || (__GNUC_MINOR__ == 3 && __GNUC_PATCHLEVEL__ < 1)))
+#error http://gcc.gnu.org/PR29382
+#endif
+ ],,
[AC_MSG_RESULT([yes]); stage1_cflags="$stage1_cflags -fkeep-inline-functions"],
[AC_MSG_RESULT([no])])