diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-02-08 22:42:48 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-02-08 22:42:48 +0100 |
commit | 52c38f85355c379f08c4e4d074778de6788d96cb (patch) | |
tree | b3b3d383afd45b39cca4fe9752f5520d9d6e751e /lib/system/dyncalls.nim | |
parent | d23eb798492798caad8dc8ee766e41972f535745 (diff) | |
download | Nim-52c38f85355c379f08c4e4d074778de6788d96cb.tar.gz |
make tests green again
Diffstat (limited to 'lib/system/dyncalls.nim')
-rw-r--r-- | lib/system/dyncalls.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/dyncalls.nim b/lib/system/dyncalls.nim index e1938eb2b..be6275338 100644 --- a/lib/system/dyncalls.nim +++ b/lib/system/dyncalls.nim @@ -29,7 +29,7 @@ proc nimLoadLibraryError(path: string) = stderr.rawWrite("could not load: ") stderr.rawWrite(path) stderr.rawWrite("\n") - when not(defined(nimDebugDlOpen)): + when not defined(nimDebugDlOpen) and not defined(windows): stderr.rawWrite("compile with -d:nimDebugDlOpen for more information\n") quit(1) |