mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-19 02:57:10 +00:00
@@ -50,7 +50,7 @@ proc loadConfigsAndRunMainCommand*(self: NimProg, cache: IdentCache; conf: Confi
|
||||
|
||||
when false:
|
||||
# These defines/options should not be enabled while processing nimscript
|
||||
# bug #4446, #9420, #8991, #9589, #9153
|
||||
# bug #4446, #9420, #8991
|
||||
undefSymbol(conf.symbols, "profiler")
|
||||
undefSymbol(conf.symbols, "memProfiler")
|
||||
undefSymbol(conf.symbols, "nodejs")
|
||||
|
||||
@@ -1539,7 +1539,7 @@ else:
|
||||
## ``string`` if the taint mode is not
|
||||
## turned on.
|
||||
|
||||
when defined(profiler):
|
||||
when defined(profiler) and not defined(nimscript):
|
||||
proc nimProfile() {.compilerProc, noinline.}
|
||||
when hasThreadSupport:
|
||||
{.pragma: rtlThreadVar, threadvar.}
|
||||
@@ -3569,7 +3569,7 @@ when not defined(JS): #and not defined(nimscript):
|
||||
when defined(endb) and not defined(nimscript):
|
||||
include "system/debugger"
|
||||
|
||||
when defined(profiler) or defined(memProfiler):
|
||||
when (defined(profiler) or defined(memProfiler)) and not defined(nimscript):
|
||||
include "system/profiler"
|
||||
{.pop.} # stacktrace
|
||||
|
||||
|
||||
Reference in New Issue
Block a user