We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2692c26 commit 780a175Copy full SHA for 780a175
projects/upx/build.sh
@@ -23,7 +23,8 @@ git apply --ignore-space-change --ignore-whitespace $SRC/upx/fuzzers/build.pa
23
# e.g.
24
mkdir -p build/debug
25
cd build/debug
26
-cmake ../..
+# Disable UBSan for the compiler sanity check that intentionally tests overflow
27
+cmake ../.. -DCMAKE_CXX_FLAGS="${CXXFLAGS} -fno-sanitize=signed-integer-overflow" -DCMAKE_C_FLAGS="${CFLAGS} -fno-sanitize=signed-integer-overflow"
28
29
for fuzzer in $(find $SRC -name '*_fuzzer.cpp'); do
30
fuzz_basename=$(basename -s .cpp $fuzzer)
0 commit comments