Browse Source

Fix tool script for gcc build in cygwin

master
cancel 6 years ago
parent
commit
2593bab7b3
  1. 6
      tool

6
tool

@ -187,7 +187,11 @@ build_target() {
case "$1" in case "$1" in
debug) debug)
build_subdir=debug build_subdir=debug
add cc_flags -DDEBUG -ggdb -fsanitize=address -fsanitize=undefined add cc_flags -DDEBUG -ggdb
# cygwin gcc doesn't seem to have this stuff, just elide for now
if [[ $os != cygwin ]]; then
add cc_flags -fsanitize=address -fsanitize=undefined
fi
if [[ $os = mac ]]; then if [[ $os = mac ]]; then
# Our mac clang does not have -Og # Our mac clang does not have -Og
add cc_flags -O1 add cc_flags -O1

Loading…
Cancel
Save