diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-01-25 16:02:22 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-01-25 16:02:22 +0100 |
commit | 394757dbf521b8b4a16dd694a687039faeb21682 (patch) | |
tree | 40bacee8ee53a3403500b0fc591a527e84799959 /tests/testament | |
parent | 1d9087245c7659b765d594466394aacf5bd3ef59 (diff) | |
parent | 0b9c1da1c088f38fb5770dbbb04b3eef35a0c624 (diff) | |
download | Nim-394757dbf521b8b4a16dd694a687039faeb21682.tar.gz |
Merge branch 'devel' of github.com:nim-lang/Nim into devel
Diffstat (limited to 'tests/testament')
-rw-r--r-- | tests/testament/categories.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index 90468e627..ac6b5b252 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -167,9 +167,9 @@ proc gcTests(r: var TResults, cat: Category, options: string) = proc longGCTests(r: var TResults, cat: Category, options: string) = when defined(windows): - let cOptions = "gcc -ldl -DWIN" + let cOptions = "-ldl -DWIN" else: - let cOptions = "gcc -ldl" + let cOptions = "-ldl" var c = initResults() # According to ioTests, this should compile the file |