From 1a5c4b18ec549bb8f35e05e8f886e73f1cc2abf0 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 15 Aug 2021 11:52:11 +0300 Subject: [PATCH] cmd/tools/fast/fast.v: do not use -no-std and -no-rsp anymore (tcc is the most recent on the CI runner now) --- cmd/tools/fast/fast.v | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/tools/fast/fast.v b/cmd/tools/fast/fast.v index 86a41c3d65..6be74f4b67 100644 --- a/cmd/tools/fast/fast.v +++ b/cmd/tools/fast/fast.v @@ -62,8 +62,7 @@ fn main() { $if freebsd { tcc_path = '/usr/local/bin/tcc' } - diff2 := measure('$vdir/vprod $voptions -no-std -no-rsp -cc $tcc_path -o v2 cmd/v', - 'v2') + diff2 := measure('$vdir/vprod $voptions -cc $tcc_path -o v2 cmd/v', 'v2') diff3 := 0 // measure('$vdir/vprod -native $vdir/cmd/tools/1mil.v', 'native 1mil') diff4 := measure('$vdir/vprod -usecache $voptions -cc clang examples/hello_world.v', 'hello.v')