mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 15:43:32 +01:00
Check whether gcc-hardening is runnable, and log an error if not
Closes ticket 27530.
This commit is contained in:
parent
70553a9134
commit
66eae4afff
4
changes/ticket27530
Normal file
4
changes/ticket27530
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor features (compilation):
|
||||||
|
- Log a more useful error message when we are compiling and one of the
|
||||||
|
compile-time hardening options we have selected can be linked but
|
||||||
|
not executed. Closes ticket 27530.
|
11
configure.ac
11
configure.ac
@ -1188,6 +1188,17 @@ m4_ifdef([AS_VAR_IF],[
|
|||||||
TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check")
|
TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check")
|
||||||
fi
|
fi
|
||||||
TOR_TRY_COMPILE_WITH_CFLAGS(-fwrapv, also_link, CFLAGS_FWRAPV="-fwrapv", true)
|
TOR_TRY_COMPILE_WITH_CFLAGS(-fwrapv, also_link, CFLAGS_FWRAPV="-fwrapv", true)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether we can run hardened binaries])
|
||||||
|
AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
|
||||||
|
[AC_MSG_RESULT([yes])],
|
||||||
|
[AC_MSG_RESULT([no])
|
||||||
|
AC_MSG_ERROR([dnl
|
||||||
|
We can link with compiler hardening options, but we can't run with them.
|
||||||
|
That's a bad sign! If you must, you can pass --disable-gcc-hardening to
|
||||||
|
configure, but it would be better to figure out what the underlying problem
|
||||||
|
is.])],
|
||||||
|
[AC_MSG_RESULT([cross])])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$fragile_hardening" = "yes"; then
|
if test "$fragile_hardening" = "yes"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user