-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handling of RTS ways with cabal-install #24
Comments
@andreabedini @angerman Any opinion on this? |
Note that "profiling" shouldn't be a cabal flavour, because it isn't ABI compatible with the vanilla flavour. Enabling profiling should be like switching the bignum backend: all the dependents have to be rebuilt when this kind of setting changes. |
We do have flavours and ways, where ways try to distinguish abi incompatibility, while flavours don't right? This seems hoplessly confusing, also flavours seem to mostly designate "ways-to-build-ghc" (default, quick, quickest, ...). We have one dimension of abi incompatibilities (vanilla, profiled, bignum(?)); I'd also argue we should free llvm from the abi compatiblity requirements with the vanilla build. It would allow us to actually build the LLVM backend properly. It does have some benefits during boostrapping NCGs though I'll admit that. And then we have a few variations of this where we set different optimisation flags. (default, quick, quickest, perf, release, assert/debug). And then we technically have all of this for the matrix of (host, target). If we look at the RTS from the debug, threaded matrix we have, four configurations. And these are a bit special, because no one really depneds on the This also provides one benefit, we could have different rts packages, and change the logic in GHC to do the suffix swap, with just swapping out the rts package. As there is no dependency tree that depends on the rts. Otherwise this looks like a usecase for (in principle) backpack? Does iserv vs no-iserv also consitute some dimension? |
After spending quite some time reading GHCs source code, I think it might be viable to compile the RTS in various configurations:
as separate cabal package, but setting different unit-ids (rts, rts-threaded, rts-debug, rts-threaded-debug), and then have GHC load the respective RTS to write in instead of doing the way-suffix logic. The RTS is fairly special in this regard, as it's an implicit dependency. There are no packages that depend on the From a cursery look across the codebase, I believe this would end up in a net negative contribution to GHC, as a lot of custom handling of the RTS can potentially be removed. |
How do you see it working more concretely?
At least some boot packages depend on it (e.g. ghc-internal). We might still implicitly substitute another |
thank you for pointing that out! Indeed I did miss that.
Let's discuss this later today :-) |
The RTS can be built using several ABI compatible ways. These are called RTS ways in the compiler and apparently flavours in Cabal. GHC can switch between them at program link time (so independently of any notion of a cabal package, so they shouldn't be represented as different installed packages to cabal afaict).
What happens with Hadrian:
When we build with cabal-install, cabal-install has to do this... Luckily Cabal has some notion of ways called "flavours" which are even documented in the manual:
Of course...
If we try to enable one (e.g.
extra-library-flavours: _thr
) and run the script in #3 we get:So apparently cabal doesn't build the different flavours but expect the resulting libraries to be present.
We probably need to design something in cabal to handle the flavours in a better way.
Currently the RTS contains:
So I think we just need to add:
It would make flavours just like
flags
but invisible at the package level.cabal-install feature to build libraries once per extra flavour
Optional: allow disabling the default flavour ("vanilla")? E.g. on ArchLinux they don't want static linking.
Optional: store the list of enabled flavours in the installed package config so that GHC can detect what is enabled (it can also detect which library files exist, so it's not mandatory).
The text was updated successfully, but these errors were encountered: