tools: hide tcc warning on macos for now
parent
9fbab969ab
commit
a7ec734967
|
@ -4,6 +4,7 @@ fn main() {
|
||||||
exit(0)
|
exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$if !macos {
|
||||||
println('
|
println('
|
||||||
Note: `tcc` was not used, so unless you install it yourself, your backend
|
Note: `tcc` was not used, so unless you install it yourself, your backend
|
||||||
C compiler will be `cc`, which is usually either `clang`, `gcc` or `msvc`.
|
C compiler will be `cc`, which is usually either `clang`, `gcc` or `msvc`.
|
||||||
|
@ -12,4 +13,5 @@ These C compilers, are several times slower at compiling C source code,
|
||||||
compared to `tcc`. They do produce more optimised executables, but that
|
compared to `tcc`. They do produce more optimised executables, but that
|
||||||
is done at the cost of compilation speed.
|
is done at the cost of compilation speed.
|
||||||
')
|
')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue