diff options
author | dom96 <dominikpicheta@googlemail.com> | 2012-05-20 11:23:16 +0100 |
---|---|---|
committer | dom96 <dominikpicheta@googlemail.com> | 2012-05-20 11:23:16 +0100 |
commit | e2221ab3105852b53aa9c1090a4cc9be462f9a06 (patch) | |
tree | 9d37a5c25bf72a39efccd5638c0727bc7aa63d1a | |
parent | a36a856a2fde4697a865cee23c760380392843b7 (diff) | |
download | Nim-e2221ab3105852b53aa9c1090a4cc9be462f9a06.tar.gz |
Fixes for embeddable devices (--os:standalone)
-rwxr-xr-x | lib/system.nim | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/system.nim b/lib/system.nim index 0b89cc5fe..5e575c814 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -856,7 +856,7 @@ template sysAssert(cond: bool, msg: string) = include "system/inclrtl" -when not defined(ecmascript) and not defined(nimrodVm) and not defined(avr): +when not defined(ecmascript) and not defined(nimrodVm) and hostOS != "standalone": include "system/cgprocs" proc add *[T](x: var seq[T], y: T) {.magic: "AppendSeqElem", noSideEffect.} @@ -1897,12 +1897,12 @@ when not defined(EcmaScript) and not defined(NimrodVM): proc writeStackTrace*() ## writes the current stack trace to ``stderr``. This is only works ## for debug builds. - - proc getStackTrace*(): string - ## gets the current stack trace. This is only works for debug builds. - + when hostOS != "standalone": + proc getStackTrace*(): string + ## gets the current stack trace. This is only works for debug builds. + {.push stack_trace: off.} - when hostCPU == "avr": + when hostOS == "standalone": include "system/embedded" else: include "system/excpt" @@ -1941,7 +1941,7 @@ when not defined(EcmaScript) and not defined(NimrodVM): include "system/mmdisp" {.push stack_trace: off.} - when hostCPU != "avr": include "system/sysstr" + when hostOS != "standalone": include "system/sysstr" {.pop.} include "system/sysio" @@ -1961,7 +1961,7 @@ when not defined(EcmaScript) and not defined(NimrodVM): var res = TaintedString(newStringOfCap(80)) while f.readLine(res): yield TaintedString(res) - when hostCPU != "avr": + when hostOS != "standalone": include "system/assign" include "system/repr" |