Skip to content

Commit ae5f23d

Browse files
committed
build: disable dynamic linking on Windows
1 parent 7691151 commit ae5f23d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cabal.project

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ write-ghc-environment-files: never
1919

2020
-- Link executables dynamically so the linker doesn't produce test
2121
-- executables of ~150MB each and works lightning fast at that too
22-
executable-dynamic: True
22+
-- Disabled on Windows
23+
if(!os(windows))
24+
executable-dynamic: True
2325

2426
-- Many of our tests only work single-threaded, and the only way to
2527
-- ensure tasty runs everything purely single-threaded is to pass

0 commit comments

Comments
 (0)