summary refs log tree commit diff stats
path: root/lib/system/dyncalls.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-02-08 22:42:48 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-02-08 22:42:48 +0100
commit52c38f85355c379f08c4e4d074778de6788d96cb (patch)
treeb3b3d383afd45b39cca4fe9752f5520d9d6e751e /lib/system/dyncalls.nim
parentd23eb798492798caad8dc8ee766e41972f535745 (diff)
downloadNim-52c38f85355c379f08c4e4d074778de6788d96cb.tar.gz
make tests green again
Diffstat (limited to 'lib/system/dyncalls.nim')
-rw-r--r--lib/system/dyncalls.nim2
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)