mirror of https://github.com/google/oss-fuzz.git
Silence unsigned overflow (#3216)
This commit is contained in:
parent
12b5811ad0
commit
40a6d7ffdb
|
@ -17,8 +17,8 @@
|
||||||
|
|
||||||
# build project
|
# build project
|
||||||
if [ "$SANITIZER" = undefined ]; then
|
if [ "$SANITIZER" = undefined ]; then
|
||||||
export CFLAGS="$CFLAGS -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=unsigned-integer-overflow"
|
export CFLAGS="$CFLAGS -fno-sanitize=unsigned-integer-overflow"
|
||||||
export CXXFLAGS="$CXXFLAGS -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=unsigned-integer-overflow"
|
export CXXFLAGS="$CXXFLAGS -fno-sanitize=unsigned-integer-overflow"
|
||||||
fi
|
fi
|
||||||
cd binutils-gdb
|
cd binutils-gdb
|
||||||
./configure --disable-gdb --enable-targets=all
|
./configure --disable-gdb --enable-targets=all
|
||||||
|
|
Loading…
Reference in New Issue