diff options
author | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-04-20 12:23:54 +0200 |
---|---|---|
committer | Grzegorz Adam Hankiewicz <gradha@imap.cc> | 2014-04-20 12:23:54 +0200 |
commit | 03ffc344e129e38638a698fa0e83bb6c7b634913 (patch) | |
tree | 0311d88c49c56a3c8f2c74863cabacf4bbb4acdb /lib | |
parent | 13b941d8eebbaf64ea69873d131569c78de2529d (diff) | |
download | Nim-03ffc344e129e38638a698fa0e83bb6c7b634913.tar.gz |
Version switch displays options used during `koch boot`
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system/excpt.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/excpt.nim b/lib/system/excpt.nim index 612a9e729..e11a30e9b 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -71,7 +71,7 @@ proc popCurrentException {.compilerRtl, inl.} = # some platforms have native support for stack traces: const - nativeStackTraceSupported = (defined(macosx) or defined(linux)) and + nativeStackTraceSupported* = (defined(macosx) or defined(linux)) and not nimrodStackTrace hasSomeStackTrace = nimrodStackTrace or defined(nativeStackTrace) and nativeStackTraceSupported |