From 3097ba93d77d323d9d36994dc3d733198dfb2487 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 2 Nov 2019 13:26:03 +0300 Subject: [PATCH] vtools: do not use -prod, it slows things down too much --- vlib/compiler/vtools.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/compiler/vtools.v b/vlib/compiler/vtools.v index b492b1bd5d..117b715242 100644 --- a/vlib/compiler/vtools.v +++ b/vlib/compiler/vtools.v @@ -31,7 +31,7 @@ pub fn launch_tool(tname string){ } if tool_should_be_recompiled { - compilation_command := '$vexe -prod $tool_source' + compilation_command := '$vexe $tool_source' //println('Compiling $tname with: "$compilation_command"') tool_compilation := os.exec(compilation_command) or { panic(err) } if tool_compilation.exit_code != 0 {