From f145d7d6f8ab2a77c1e4093374c3bb1b62eb8087 Mon Sep 17 00:00:00 2001 From: cancel Date: Wed, 11 Nov 2020 08:15:10 +0900 Subject: [PATCH] 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. --- tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool b/tool index 877cd43..d5a93c0 100755 --- a/tool +++ b/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)