diff options
author | Varriount <Varriount@users.noreply.github.com> | 2014-04-21 15:41:03 -0400 |
---|---|---|
committer | Varriount <Varriount@users.noreply.github.com> | 2014-04-21 15:41:03 -0400 |
commit | c0338eacb6b35b2d6a1c051b26d56c31b973cc30 (patch) | |
tree | 78cbfbc17b106be8d8575057262dd4d45b429268 /lib/system/excpt.nim | |
parent | bc79f40281accea987b23b47778782f7684de38c (diff) | |
parent | 03ffc344e129e38638a698fa0e83bb6c7b634913 (diff) | |
download | Nim-c0338eacb6b35b2d6a1c051b26d56c31b973cc30.tar.gz |
Merge pull request #1118 from gradha/pr_show_boot_options
Version switch displays options used during `koch boot`
Diffstat (limited to 'lib/system/excpt.nim')
-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 2f7c5ed51..2dc134eaf 100644 --- a/lib/system/excpt.nim +++ b/lib/system/excpt.nim @@ -77,7 +77,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 |