Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions projects/vlc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ cd ../../
# Resume instrumentation
export CFLAGS="${CFLAGS_SAVE}"
export CXXFLAGS="${CXXFLAGS_SAVE}"
# Disable asserts under ASAN to let the fuzzer find deeper bugs past debug checks
if [ "$SANITIZER" = "address" ]; then
export CFLAGS="$CFLAGS -DNDEBUG"
export CXXFLAGS="$CXXFLAGS -DNDEBUG"
fi
unset AFL_NOOPT

# Use OSS-Fuzz environment rather than hardcoded setup.
Expand Down
Loading