Browse Source

Fix tool build script for tcc compiler in debug

tcc wants -bt10 instead of -bt 10, otherwise it might interpret 10 as a
file name.
master
cancel 5 years ago
parent
commit
f145d7d6f8
  1. 2
      tool

2
tool

@ -303,7 +303,7 @@ build_target() {
# add cc_flags -fsanitize=leak
fi
case $cc_id in
tcc) add cc_flags -g -bt 10;;
tcc) add cc_flags -g -bt10;;
esac
;;
release)

Loading…
Cancel
Save