aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-18 11:28:21 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-18 13:43:55 -0300
commit63f1a045ba675568a1e92b204c301359dbccc85b (patch)
tree3b4168433e6b430606cf51b833f0a4d0eeb04191 /configure
parentMerge pull request #5857 from kmk3/ci-standardize-apt (diff)
downloadfirejail-63f1a045ba675568a1e92b204c301359dbccc85b.tar.gz
firejail-63f1a045ba675568a1e92b204c301359dbccc85b.tar.zst
firejail-63f1a045ba675568a1e92b204c301359dbccc85b.zip
build: remove -mretpoline and NO_EXTRA_CFLAGS
The -mretpoline flag is not documented in the current versions of gcc and clang and it is what causes scan-build to fail: $ ./configure CC=clang | grep retpoline checking whether C compiler accepts -mretpoline... yes EXTRA_CFLAGS: -mretpoline -fstack-clash-protection -fstack-protector-strong $ scan-build --status-bugs make scan-build: Using '/usr/bin/clang-15' for static analysis make -C src/lib make[1]: Entering directory '/tmp/firejail/src/lib' /usr/bin/../lib/clang/ccc-analyzer [...] -mretpoline [...] -c common.c -o common.o gcc: error: unrecognized command-line option ‘-mretpoline’ make[1]: *** [../../src/prog.mk:16: common.o] Error 1 make[1]: Leaving directory '/tmp/firejail/src/lib' make: *** [Makefile:59: src/lib] Error 2 scan-build: Analysis run complete. scan-build: Removing directory '/tmp/scan-build-[...]' because it contains no reports. scan-build: No bugs found. Environment: clang 15.0.7-9 and gcc 13.1.1-1 on Artix Linux. Note: NO_EXTRA_CFLAGS was added to work around this issue by causing all of the flags in EXTRA_CFLAGS to be ignored. Note2: -mretpoline was added on commit 4a99c8aa2 ("spectre support for clang compiler", 2018-03-30) and NO_EXTRA_CFLAGS was added on commit 490918c35 ("fix make scan-build for debian 10 and arch", 2019-07-22). See also commit 2c64d1fdd ("use AX_CHECK_COMPILE_FLAG to check for spectre flags", 2019-06-21). Closes #5509. Kind of relates to #2661.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure38
1 files changed, 0 insertions, 38 deletions
diff --git a/configure b/configure
index ceb09bd31..068274fea 100755
--- a/configure
+++ b/configure
@@ -2925,44 +2925,6 @@ else
2925 : 2925 :
2926fi 2926fi
2927 2927
2928{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -mretpoline" >&5
2929$as_echo_n "checking whether C compiler accepts -mretpoline... " >&6; }
2930if ${ax_cv_check_cflags___mretpoline+:} false; then :
2931 $as_echo_n "(cached) " >&6
2932else
2933
2934 ax_check_save_flags=$CFLAGS
2935 CFLAGS="$CFLAGS -mretpoline"
2936 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2937/* end confdefs.h. */
2938
2939int
2940main ()
2941{
2942
2943 ;
2944 return 0;
2945}
2946_ACEOF
2947if ac_fn_c_try_compile "$LINENO"; then :
2948 ax_cv_check_cflags___mretpoline=yes
2949else
2950 ax_cv_check_cflags___mretpoline=no
2951fi
2952rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2953 CFLAGS=$ax_check_save_flags
2954fi
2955{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___mretpoline" >&5
2956$as_echo "$ax_cv_check_cflags___mretpoline" >&6; }
2957if test "x$ax_cv_check_cflags___mretpoline" = xyes; then :
2958
2959 HAVE_SPECTRE="yes"
2960 EXTRA_CFLAGS="$EXTRA_CFLAGS -mretpoline"
2961
2962else
2963 :
2964fi
2965
2966{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-clash-protection" >&5 2928{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-clash-protection" >&5
2967$as_echo_n "checking whether C compiler accepts -fstack-clash-protection... " >&6; } 2929$as_echo_n "checking whether C compiler accepts -fstack-clash-protection... " >&6; }
2968if ${ax_cv_check_cflags___fstack_clash_protection+:} false; then : 2930if ${ax_cv_check_cflags___fstack_clash_protection+:} false; then :