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.
1 files changed, 1 insertions(+), 1 deletions(-) M tool
M tool => tool +1 -1
@@ 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)