shithub: orca

Download patch

ref: f145d7d6f8ab2a77c1e4093374c3bb1b62eb8087
parent: f85ebfc1bfe3e2a42d0530a57d62d79bf6b55046
author: cancel <cancel@cancel.fm>
date: Wed Nov 11 03:15:10 EST 2020

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.

--- a/tool
+++ b/tool
@@ -303,7 +303,7 @@
         # 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)
--