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

compiler: use thirdparty/tcc/tcc.exe by default, when no explicit -cc is given (#6598)

This commit is contained in:
Delyan Angelov
2020-11-29 17:18:49 +02:00
committed by GitHub
parent 0b96cd50e1
commit adeebad2a6
8 changed files with 105 additions and 80 deletions

View File

@ -122,9 +122,6 @@ fn (mut a App) collect_info() {
a.line('Git vroot status', a.git_info())
a.line('.git/config present', os.is_file('.git/config').str())
//
if os_kind == 'linux' {
a.report_tcc_version('/var/tmp/tcc')
}
a.report_tcc_version('thirdparty/tcc')
}