From 2c45e601ef43826bdf32f06de501b597dbe6d3d6 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 30 Jul 2020 16:56:58 +0300 Subject: [PATCH] builder: increase backtrace size with tcc to 25 frames --- vlib/v/builder/cc.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/builder/cc.v b/vlib/v/builder/cc.v index 29f3ab4e82..8a44870da3 100644 --- a/vlib/v/builder/cc.v +++ b/vlib/v/builder/cc.v @@ -407,7 +407,7 @@ fn (mut v Builder) cc() { } } if is_cc_tcc { - args << '-bt10' + args << '-bt25' } // Without these libs compilation will fail on Linux // || os.user_os() == 'linux'