Skip to content

Commit

Permalink
Silence unsigned overflow (google#3216)
Browse files Browse the repository at this point in the history
  • Loading branch information
catenacyber authored and inferno-chromium committed Jan 10, 2020
1 parent 12b5811 commit 40a6d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/binutils/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 40a6d7f

Please sign in to comment.