Sven Tennie pushed to branch wip/romes/hadrian-cross-stage2-rebase_SVEN_FIXED at Glasgow Haskell Compiler / GHC Commits: 23292e9b by Sven Tennie at 2025-11-02T12:14:18+01:00 NOSMP has to be a C flag for RTS Otherwise building unregisterised fails. This is also in line with master. - - - - - 1 changed file: - hadrian/src/Settings/Packages.hs Changes: ===================================== hadrian/src/Settings/Packages.hs ===================================== @@ -323,7 +323,7 @@ rtsPackageArgs = package rts ? do , "-optc-DTICKY_TICKY"] , Profiling `wayUnit` way ? arg "-DPROFILING" , Threaded `wayUnit` way ? arg "-DTHREADED_RTS" - , notM (targetSupportsSMP stage) ? arg "-DNOSMP" + , notM (targetSupportsSMP stage) ? arg "-optc-DNOSMP" -- See Note [AutoApply.cmm for vectors] in genapply/Main.hs -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/23292e9b8ae98a3119bfe3e5f2c0539f... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/23292e9b8ae98a3119bfe3e5f2c0539f... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Sven Tennie (@supersven)