David Eichmann pushed to branch wip/27162/rts-explicit-dllimport_work at Glasgow Haskell Compiler / GHC Commits: 1390d42f by David Eichmann at 2026-04-28T16:31:31+01:00 fixup! WIP - - - - - 1 changed file: - hadrian/src/Settings/Packages.hs Changes: ===================================== hadrian/src/Settings/Packages.hs ===================================== @@ -298,7 +298,6 @@ rtsPackageArgs :: Args rtsPackageArgs = package rts ? do ghcUnreg <- queryTarget tgtUnregisterised ghcEnableTNC <- queryTarget tgtTablesNextToCode - mingw32 <- queryTarget (\ tgt -> archOS_OS (tgtArchOs tgt) == OSMinGW32) rtsWays <- getRtsWays way <- getWay path <- getBuildPath @@ -322,7 +321,7 @@ rtsPackageArgs = package rts ? do , Profiling `wayUnit` way ? arg "-DPROFILING" , Threaded `wayUnit` way ? arg "-DTHREADED_RTS" , notM targetSupportsSMP ? arg "-optc-DNOSMP" - , mingw32 ? arg "-optl-Wl,--disable-runtime-pseudo-reloc" + , isWinHost ? arg "-optl-Wl,--disable-runtime-pseudo-reloc" -- See Note [AutoApply.cmm for vectors] in genapply/Main.hs -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1390d42ff29cb369fc327f8afb266345... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/1390d42ff29cb369fc327f8afb266345... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
David Eichmann (@DavidEichmann)