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 {