diff options
| author | Mark Wielaard <[email protected]> | 2014-11-27 23:53:30 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2014-12-04 14:38:18 +0100 |
| commit | 805ec833c17b01e1791162227ab0b4119ffe1eb0 (patch) | |
| tree | 49b51144788da2c08bd393cbb82335bdd6d0af38 /configure.ac | |
| parent | 12ab700282dd66d5d2144e13611011426091f260 (diff) | |
Add configure --disable-textrelcheck option to enable CC=afl-fuzz on 32bit.
Using american fuzzy lop has found a lot of issues. It would be nice to
make using it a bit easier. Our build files make sure that no shared
library uses text relocations, but afl-gcc will insert some on i686.
http://www.akkadia.org/drepper/textrelocs.html
Now CC=afl-gcc ./configure --disable-textrelcheck will allow them so
that afl can instrument the libraries.
Don't try to use or install them except with afl-fuzz. When selinux is
enabled it might prevent loading the libraries with DT_TEXTREL set.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 76a172de..9bc83c54 100644 --- a/configure.ac +++ b/configure.ac @@ -212,6 +212,11 @@ AC_CHECK_LIB([stdc++], [__cxa_demangle], [dnl AC_DEFINE([USE_DEMANGLE], [1], [Defined if demangling is enabled])]) AM_CONDITIONAL(DEMANGLE, test "$ac_cv_lib_stdcpp___cxa_demangle" = yes) +AC_ARG_ENABLE([textrelcheck], +AS_HELP_STRING([--disable-textrelcheck], + [Disable textrelcheck being a fatal error])) +AM_CONDITIONAL(FATAL_TEXTREL, [test "x$enable_textrelcheck" != "xno"]) + dnl The directories with content. dnl Documentation. |
