diff options
author | Araq <rumpf_a@web.de> | 2019-07-12 10:11:34 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-12 10:11:34 +0200 |
commit | 511b6ae27c1aae27c3f7bb8aed83245a752d4f4c (patch) | |
tree | 0b2daa5a4798a41335e0bea5748e0bbc32fb4d4d /koch.nim | |
parent | 2f0a50fa51f9dd42c0a8c51d4f86f81017b3c6f2 (diff) | |
download | Nim-511b6ae27c1aae27c3f7bb8aed83245a752d4f4c.tar.gz |
koch temp bugfix
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/koch.nim b/koch.nim index e3d197640..bb8e57c45 100644 --- a/koch.nim +++ b/koch.nim @@ -441,10 +441,9 @@ proc temp(args: string) = let d = getAppDir() var output = d / "compiler" / "nim".exe var finalDest = d / "bin" / "nim_temp".exe - # 125 is the magic number to tell git bisect to skip the current - # commit. + # 125 is the magic number to tell git bisect to skip the current commit. var (bootArgs, programArgs) = splitArgs(args) - if "doc" notin programArgs and "threads" notin programArgs: + if "doc" notin programArgs and "threads" notin programArgs and "js" notin programArgs: bootArgs.add " -d:leanCompiler" let nimexec = findNim() exec(nimexec & " c -d:debug --debugger:native " & bootArgs & " " & (d / "compiler" / "nim"), 125) |