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

tools/fast: fix -skip-unused

This commit is contained in:
Alexander Medvednikov 2021-05-09 03:50:25 +03:00
parent 3e5a5754f3
commit e040806c36

View File

@ -39,7 +39,7 @@ fn main() {
println(' Building vprod...')
exec('v -o $vdir/vprod -prod -prealloc $vdir/cmd/v')
// exec('v -o $vdir/vprod $vdir/cmd/v') // for faster debugging
diff1 := measure('$vdir/vprod -cc -skip-unused clang -o v.c -show-timings $vdir/cmd/v', 'v.c')
diff1 := measure('$vdir/vprod -skip-unused -cc clang -o v.c -show-timings $vdir/cmd/v', 'v.c')
mut tcc_path := 'tcc'
$if freebsd {
tcc_path = '/usr/local/bin/tcc'