Skip to content

Commit 1fc9e1a

Browse files
committed
tools: build c2v in non verbose mode by default
1 parent fa2e8d8 commit 1fc9e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tools/translate.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323
if !os.exists(c2v_bin) {
2424
os.chdir(c2v_dir)?
2525
println('Compiling c2v ...')
26-
res2 := os.execute('v -d trace_verbose -g -o c2v -experimental -w .')
26+
res2 := os.execute('v -keepc -g -experimental -o c2v .')
2727
if res2.exit_code != 0 {
2828
eprintln(res2.output)
2929
eprintln('Failed to compile C2V. This should never happen, please report it via GitHub.')

0 commit comments

Comments
 (0)