Duncan Coutts pushed to branch wip/dcoutts/windows-dlls at Glasgow Haskell Compiler / GHC
Commits:
-
56d12f83
by Duncan Coutts at 2026-01-06T17:55:31+00:00
1 changed file:
Changes:
| ... | ... | @@ -3588,7 +3588,7 @@ compilerInfo dflags |
| 3588 | 3588 | ("target has RTS linker", showBool $ platformHasRTSLinker platform),
|
| 3589 | 3589 | ("Target default backend", show $ platformDefaultBackend platform),
|
| 3590 | 3590 | -- Whether or not we support @-dynamic-too@
|
| 3591 | - ("Support dynamic-too", showBool $ not isWindows),
|
|
| 3591 | + ("Support dynamic-too", "YES"),
|
|
| 3592 | 3592 | -- Whether or not we support the @-j@ flag with @--make@.
|
| 3593 | 3593 | ("Support parallel --make", "YES"),
|
| 3594 | 3594 | -- Whether or not we support "Foo from foo-0.1-XXX:Foo" syntax in
|
| ... | ... | @@ -3623,7 +3623,6 @@ compilerInfo dflags |
| 3623 | 3623 | showBool True = "YES"
|
| 3624 | 3624 | showBool False = "NO"
|
| 3625 | 3625 | platform = targetPlatform dflags
|
| 3626 | - isWindows = platformOS platform == OSMinGW32
|
|
| 3627 | 3626 | expandDirectories = expandToolDir (toolDir dflags) . expandTopDir (topDir dflags)
|
| 3628 | 3627 | query :: (Target -> a) -> a
|
| 3629 | 3628 | query f = f (rawTarget dflags)
|