Silence unsigned overflow (#3216)

This commit is contained in:
Catena cyber 2020-01-10 16:04:42 +01:00 committed by Abhishek Arya
parent 12b5811ad0
commit 40a6d7ffdb
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@
# build project
if [ "$SANITIZER" = undefined ]; then
export CFLAGS="$CFLAGS -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=unsigned-integer-overflow"
export CXXFLAGS="$CXXFLAGS -fsanitize=unsigned-integer-overflow -fno-sanitize-recover=unsigned-integer-overflow"
export CFLAGS="$CFLAGS -fno-sanitize=unsigned-integer-overflow"
export CXXFLAGS="$CXXFLAGS -fno-sanitize=unsigned-integer-overflow"
fi
cd binutils-gdb
./configure --disable-gdb --enable-targets=all