summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-05-15 09:06:50 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-05-15 09:07:17 -0700
commit4c1a5d8b71e29b71e0bc1004480c12c5fc427cb7 (patch)
tree00192b598877094aa647955fecc5997ced114e06 /config
parent[Fortran] OpenMP 5 – permit more sharing clauses for SIMD (PR94690) (diff)
downloadgcc-4c1a5d8b71e29b71e0bc1004480c12c5fc427cb7.tar.gz
gcc-4c1a5d8b71e29b71e0bc1004480c12c5fc427cb7.tar.bz2
gcc-4c1a5d8b71e29b71e0bc1004480c12c5fc427cb7.tar.xz
x86: Also check if -fcf-protection works
When defaulting CET run-time support to auto, check if -fcf-protection works. Even if the stage1 GCC doesn't support -fcf-protection, since the final GCC does, CET run-time support will be enabled by default if binutils support CET. config/ PR bootstrap/95147 * cet.m4 (GCC_CET_FLAGS): Also check if -fcf-protection works when defaulting to auto. libatomic/ PR bootstrap/95147 * configure: Regenerated. libbacktrace/ PR bootstrap/95147 * configure: Regenerated. libgcc/ PR bootstrap/95147 * configure: Regenerated. libgfortran/ PR bootstrap/95147 * configure: Regenerated. libgomp/ PR bootstrap/95147 * configure: Regenerated. libitm/ PR bootstrap/95147 * configure: Regenerated. libobjc/ PR bootstrap/95147 * configure: Regenerated. libphobos/ PR bootstrap/95147 * configure: Regenerated. libquadmath/ PR bootstrap/95147 * configure: Regenerated. libsanitizer/ PR bootstrap/95147 * configure: Regenerated. libssp/ PR bootstrap/95147 * configure: Regenerated. libstdc++-v3/ PR bootstrap/95147 * configure: Regenerated. libvtv/ PR bootstrap/95147 * configure: Regenerated. zlib/ PR bootstrap/95147 * configure: Regenerated.
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog6
-rw-r--r--config/cet.m43
2 files changed, 9 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index d36c5bb4976..a4d54749669 100644
--- a/config/ChangeLog
+++ b/config/ChangeLog
@@ -1,3 +1,9 @@
12020-05-15 H.J. Lu <hongjiu.lu@intel.com>
2
3 PR bootstrap/95147
4 * cet.m4 (GCC_CET_FLAGS): Also check if -fcf-protection works
5 when defaulting to auto.
6
12020-05-14 H.J. Lu <hongjiu.lu@intel.com> 72020-05-14 H.J. Lu <hongjiu.lu@intel.com>
2 8
3 * cet.m4 (GCC_CET_FLAGS): Change default to auto. 9 * cet.m4 (GCC_CET_FLAGS): Change default to auto.
diff --git a/config/cet.m4 b/config/cet.m4
index 63c6ea9ee02..2bb2c8a95ac 100644
--- a/config/cet.m4
+++ b/config/cet.m4
@@ -13,6 +13,8 @@ case "$host" in
13 auto) 13 auto)
14 # Check if target supports multi-byte NOPs 14 # Check if target supports multi-byte NOPs
15 # and if assembler supports CET insn. 15 # and if assembler supports CET insn.
16 save_CFLAGS="$CFLAGS"
17 CFLAGS="$CFLAGS -fcf-protection"
16 AC_COMPILE_IFELSE( 18 AC_COMPILE_IFELSE(
17 [AC_LANG_PROGRAM( 19 [AC_LANG_PROGRAM(
18 [], 20 [],
@@ -25,6 +27,7 @@ asm ("setssbsy");
25 ])], 27 ])],
26 [enable_cet=yes], 28 [enable_cet=yes],
27 [enable_cet=no]) 29 [enable_cet=no])
30 CFLAGS="$save_CFLAGS"
28 ;; 31 ;;
29 yes) 32 yes)
30 # Check if assembler supports CET. 33 # Check if assembler supports CET.