Skip to content

Commit

Permalink
build: disable dynamic linking on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
develop7 committed Oct 29, 2024
1 parent bd6d82c commit 992a3ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ write-ghc-environment-files: never

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

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

0 comments on commit 992a3ad

Please sign in to comment.