diff options
Diffstat (limited to 'lib/pure/os.nim')
-rwxr-xr-x | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 5a298db5b..68634e4ca 100755 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -149,7 +149,7 @@ else: # UNIX-like operating system FileSystemCaseSensitive* = true ExeExt* = "" ScriptExt* = "" - DynlibFormat* = "lib$1.so" + DynlibFormat* = when defined(macosx): "lib$1.dylib" else: "lib$1.so" when defined(macosx) or defined(bsd): var |