aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images/base-builder/compile_afl
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-04-04 07:11:40 -0700
committerGravatar GitHub <noreply@github.com>2019-04-04 07:11:40 -0700
commit6625401871043daff273a1a76d05c6f54754fea4 (patch)
treec0af688bed9d91e26e4e695b690bbda0e9524c22 /infra/base-images/base-builder/compile_afl
parent2fa5eca226a5257f0798c40f99d78f5b3b29093c (diff)
Fix build breakage caused by unnecessary AFL testing (#2291)
Don't test compilation with afl-clang and afl-fuzz
Diffstat (limited to 'infra/base-images/base-builder/compile_afl')
-rwxr-xr-xinfra/base-images/base-builder/compile_afl2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/base-images/base-builder/compile_afl b/infra/base-images/base-builder/compile_afl
index f9857508..a428bee5 100755
--- a/infra/base-images/base-builder/compile_afl
+++ b/infra/base-images/base-builder/compile_afl
@@ -38,7 +38,7 @@ INITIAL_CXXFLAGS=$CXXFLAGS
INITIAL_CFLAGS=$CFLAGS
unset CXXFLAGS
unset CFLAGS
-make clean && make
+make clean && AFL_NO_X86=1 make
CFLAGS=$INITIAL_CFLAGS
CXXFLAGS=$INITIAL_CXXFLAGS