diff --git a/tools/fast/fast.v b/tools/fast/fast.v index 602c9d12ae..f31ce80b31 100644 --- a/tools/fast/fast.v +++ b/tools/fast/fast.v @@ -31,7 +31,8 @@ fn main() { println('Measuring...') diff1 := measure('$vdir/vprod -cc clang -o v.c $vdir/v.v') diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/v.v') - diff3 := measure('$vdir/vprod -cc clang -o v2 -fast $vdir/v.v') + diff3 := measure('$vdir/vprod -o v2 -fast $vdir/v.v') + diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v') //println('Building V took ${diff}ms') commit_date := exec('git log -n1 --pretty="format:%at"') message := exec('git log -n1 --pretty="format:%s"') @@ -46,6 +47,7 @@ fn main() { ${diff1}ms ${diff2}ms ${diff3}ms + ${diff4}ms \n' + table.trim_space() out.writeln(table) diff --git a/tools/fast/header.html b/tools/fast/header.html index 5d8687c705..dfe1b5875c 100644 --- a/tools/fast/header.html +++ b/tools/fast/header.html @@ -1,6 +1,6 @@ -fast.vlang.io +Is V still fast?