koch temp: use -d:leanCompiler if possible

This commit is contained in:
Araq
2019-07-10 00:26:29 +02:00
parent 2255d8795b
commit 7a39eb13a5

View File

@@ -437,7 +437,9 @@ proc temp(args: string) =
var finalDest = d / "bin" / "nim_temp".exe
# 125 is the magic number to tell git bisect to skip the current
# commit.
let (bootArgs, programArgs) = splitArgs(args)
var (bootArgs, programArgs) = splitArgs(args)
if "doc" notin programArgs and "threads" notin programArgs:
bootArgs.add " -d:leanCompiler"
let nimexec = findNim()
exec(nimexec & " c -d:debug --debugger:native " & bootArgs & " " & (d / "compiler" / "nim"), 125)
copyExe(output, finalDest)