summaryrefslogtreecommitdiff
path: root/compiler/GHC/Platform.hs
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-10-15 12:02:17 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-10-17 22:04:02 -0400
commita91dcb669b3b221c51e8ba8bb85b7ae9806bc4ca (patch)
treea0fa29c621e5f571fd4d0af9ed04e80ab1d9524d /compiler/GHC/Platform.hs
parent0b995759ae2ba2161097a1c43efc650ccbce0276 (diff)
downloadhaskell-a91dcb669b3b221c51e8ba8bb85b7ae9806bc4ca.tar.gz
Don't get host RTS ways via settings (#18651)
To correctly perform a linking hack for Windows we need to link with the RTS GHC is currently using. We used to query the RTS ways via the "settings" file but it is fragile (#18651). The hack hasn't been fixed to take into account all the ways (Tracing) and it makes linking of GHC with another RTS more difficult (we need to link with another RTS and to regenerate the settings file). So this patch uses the ways reported by the RTS itself (GHC.Platform.Ways.hostWays) instead of the "settings" file.
Diffstat (limited to 'compiler/GHC/Platform.hs')
-rw-r--r--compiler/GHC/Platform.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/GHC/Platform.hs b/compiler/GHC/Platform.hs
index 56a18e9c88..856903bbd1 100644
--- a/compiler/GHC/Platform.hs
+++ b/compiler/GHC/Platform.hs
@@ -209,8 +209,6 @@ data PlatformMisc = PlatformMisc
, platformMisc_ghcWithSMP :: Bool
, platformMisc_ghcRTSWays :: String
, platformMisc_libFFI :: Bool
- , platformMisc_ghcThreaded :: Bool
- , platformMisc_ghcDebugged :: Bool
, platformMisc_ghcRtsWithLibdw :: Bool
, platformMisc_llvmTarget :: String
}