~rabbits/orca

f145d7d6f8ab2a77c1e4093374c3bb1b62eb8087 — cancel 2 years ago f85ebfc
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)