openssl: call configure with --debug (#214)

Otherwise NDEBUG is set, and the asserts don't trigger.
This commit is contained in:
Kurt Roeckx 2016-12-24 16:07:31 +01:00 committed by Abhishek Arya
parent c050be7602
commit 4190b47e0e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
#
################################################################################
./config enable-fuzz-libfuzzer -DPEDANTIC -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION no-shared enable-tls1_3 enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-nextprotoneg enable-weak-ssl-ciphers --with-fuzzer-lib=/usr/lib/libFuzzingEngine $CFLAGS -fno-sanitize=alignment
./config --debug enable-fuzz-libfuzzer -DPEDANTIC -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION no-shared enable-tls1_3 enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 enable-ssl3 enable-ssl3-method enable-nextprotoneg enable-weak-ssl-ciphers --with-fuzzer-lib=/usr/lib/libFuzzingEngine $CFLAGS -fno-sanitize=alignment
make -j$(nproc) LDCMD="clang++ $CXXFLAGS"