cc.v: fix tcc check

pull/2546/head
Alexander Medvednikov 2019-10-25 20:11:53 +03:00
parent c30f16a038
commit 7d02eccbce
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ start:
if res.exit_code == 127 {
$if linux {
// TCC problems on linux? Try GCC.
if v.pref.ccompiler == 'tcc' {
if v.pref.ccompiler.contains('tcc') {
v.pref.ccompiler = 'cc'
goto start
}