
Sven Tennie pushed to branch wip/romes/hadrian-cross-stage2-rebase_SVEN_FIXED at Glasgow Haskell Compiler / GHC Commits: d3c7db03 by Sven Tennie at 2025-09-15T12:25:59+00:00 Fix out-of-tree TestCompilerArgs parsing: WORDSIZE TestWORDSIZE is in bits, not bytes. - - - - - 1 changed file: - hadrian/src/Settings/Builders/RunTest.hs Changes: ===================================== hadrian/src/Settings/Builders/RunTest.hs ===================================== @@ -172,7 +172,7 @@ outOfTreeCompilerArgs = do os <- getTestSetting TestHostOS arch <- maybe "unknown" stringEncodeArch . readArch <$> getTestSetting TestTargetARCH platform <- getTestSetting TestTARGETPLATFORM - wordsize <- show . ((8 :: Int) *) . read <$> getTestSetting TestWORDSIZE + wordsize <- show . read @Int <$> getTestSetting TestWORDSIZE rtsWay <- getTestSetting TestRTSWay let debugged = "debug" `isInfixOf` rtsWay View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d3c7db03b121ce0612c8fc6e479a8de7... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d3c7db03b121ce0612c8fc6e479a8de7... You're receiving this email because of your account on gitlab.haskell.org.