diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-08-25 10:37:46 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-08-25 10:37:46 +0200 |
commit | 3a01eab4df76e24b67ea62337411a23bc5987e28 (patch) | |
tree | ff0cadf66fe6c8b582ef7ca04f001709a733a37a | |
parent | 646af76c873f46875e91390f50dc3a2efb5e6d4d (diff) | |
parent | bb1bf2b7d0d46e6029361e2f426c01e980d9f430 (diff) | |
download | Nim-3a01eab4df76e24b67ea62337411a23bc5987e28.tar.gz |
Merge pull request #3244 from yglukhov/patch-1
Corrected lib name for macos.
-rw-r--r-- | lib/system/inclrtl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/inclrtl.nim b/lib/system/inclrtl.nim index dbc961402..d0dc38284 100644 --- a/lib/system/inclrtl.nim +++ b/lib/system/inclrtl.nim @@ -33,7 +33,7 @@ elif defined(useNimRtl): when defined(windows): const nimrtl* = "nimrtl.dll" elif defined(macosx): - const nimrtl* = "nimrtl.dylib" + const nimrtl* = "libnimrtl.dylib" else: const nimrtl* = "libnimrtl.so" {.pragma: rtl, importc: "nimrtl_$1", dynlib: nimrtl, gcsafe.} |