From: Nick Mathewson Date: Mon, 9 Jan 2017 16:26:27 +0000 (-0500) Subject: oss_fuzz also requires no PIE X-Git-Tag: tor-0.3.0.3-alpha~36^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99d4faf6d35b5923daf48605da0d9da2e7de1824;p=thirdparty%2Ftor.git oss_fuzz also requires no PIE --- diff --git a/configure.ac b/configure.ac index aff41ae60a..f6438066b1 100644 --- a/configure.ac +++ b/configure.ac @@ -765,7 +765,7 @@ m4_ifdef([AS_VAR_IF],[ AS_VAR_POPDEF([can_compile]) TOR_CHECK_CFLAGS(-Wstack-protector) TOR_CHECK_CFLAGS(--param ssp-buffer-size=1) - if test "$bwin32" = "false" && test "$enable_libfuzzer" != "yes"; then + if test "$bwin32" = "false" && test "$enable_libfuzzer" != "yes" && test "$enable_oss_fuzz" != "yes"; then TOR_CHECK_CFLAGS(-fPIE) TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check") fi