1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builder: increase backtrace size with tcc to 25 frames

This commit is contained in:
Delyan Angelov 2020-07-30 16:56:58 +03:00
parent 3883c34b8c
commit 2c45e601ef

View File

@ -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'