diff options
author | Igor Tsimbalist <igor.v.tsimbalist@intel.com> | 2017-11-17 23:48:36 +0100 |
---|---|---|
committer | Igor Tsimbalist <itsimbal@gcc.gnu.org> | 2017-11-17 23:48:36 +0100 |
commit | 7b7168cffe17ca4b17246bb1d8b851a91edbc2d8 (patch) | |
tree | fe3657d292a5efa04dacccd2af712d19457e3af4 /libobjc/configure | |
parent | 667b43c1790c5058c53ace54809f5b7aca374e72 (diff) | |
download | gcc-7b7168cffe17ca4b17246bb1d8b851a91edbc2d8.zip gcc-7b7168cffe17ca4b17246bb1d8b851a91edbc2d8.tar.gz gcc-7b7168cffe17ca4b17246bb1d8b851a91edbc2d8.tar.bz2 |
Enable building libobjc with Intel CET
libobjc/
* Makefile.in: Regenerate.
* aclocal.m4: Likeiwse.
* configure: Likewise.
* configure.ac: Set CET_FLAGS. Update XCFLAGS.
From-SVN: r254904
Diffstat (limited to 'libobjc/configure')
-rwxr-xr-x | libobjc/configure | 80 |
1 files changed, 77 insertions, 3 deletions
diff --git a/libobjc/configure b/libobjc/configure index abf5aed..3a2b2e3 100755 --- a/libobjc/configure +++ b/libobjc/configure @@ -635,6 +635,7 @@ INSTALL_PROGRAM RANLIB AR AS +XCFLAGS extra_ldflags_libobjc lt_host_flags OBJEXT @@ -714,6 +715,7 @@ with_target_subdir with_cross_host enable_version_specific_runtime_libs enable_multilib +enable_cet enable_maintainer_mode enable_shared enable_static @@ -1350,6 +1352,8 @@ Optional Features: --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory --enable-multilib build many library versions (default) + --enable-cet enable Intel CET in target libraries + [default=default] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-shared[=PKGS] build shared libraries [default=yes] @@ -3350,6 +3354,77 @@ case "${host}" in esac +# Add CET specific flags if CET is enabled + + # Check whether --enable-cet was given. +if test "${enable_cet+set}" = set; then : + enableval=$enable_cet; + case "$enableval" in + yes|no|default) ;; + *) as_fn_error "Unknown argument to enable/disable cet" "$LINENO" 5 ;; + esac + +else + enable_cet=default +fi + + +case "$host" in + i[34567]86-*-linux* | x86_64-*-linux*) + case "$enable_cet" in + default) + # Check if assembler supports CET. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +asm ("setssbsy"); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + enable_cet=yes +else + enable_cet=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ;; + yes) + # Check if assembler supports CET. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +asm ("setssbsy"); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + as_fn_error "assembler with CET support is required for --enable-cet" "$LINENO" 5 +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ;; + esac + ;; + *) + enable_cet=no + ;; +esac +if test x$enable_cet = xyes; then + CET_FLAGS="-fcf-protection -mcet" +fi + +XCFLAGS="$XCFLAGS $CET_FLAGS" + + if test -n "$ac_tool_prefix"; then @@ -5982,7 +6057,6 @@ fi - # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; @@ -10594,7 +10668,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10597 "configure" +#line 10671 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10700,7 +10774,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10703 "configure" +#line 10777 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |