diff options
author | Zubin Duggal <zubin.duggal@gmail.com> | 2021-06-13 16:02:06 +0530 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-02-21 11:18:58 +0000 |
commit | 7ce1b694f7be7fbf6e2d7b7eb0639e61fbe358c6 (patch) | |
tree | 9e6ff5ac7982e9d22987f551a531d0f034ec942c /testsuite | |
parent | 2f0ceecc42789558c648c6dcff431d3c8ac3aa46 (diff) | |
download | haskell-7ce1b694f7be7fbf6e2d7b7eb0639e61fbe358c6.tar.gz |
Reinstallable GHC
This patch allows ghc and its dependencies to be built using a normal
invocation of cabal-install. Each componenent which relied on generated
files or additional configuration now has a Setup.hs file.
There are also various fixes to the cabal files to satisfy
cabal-install.
There is a new hadrian command which will build a stage2 compiler and
then a stage3 compiler by using cabal.
```
./hadrian/build build-cabal
```
There is also a new CI job which tests running this command.
For the 9.4 release we will upload all the dependent executables to
hackage and then end users will be free to build GHC and GHC executables
via cabal.
There are still some unresolved questions about how to ensure soundness
when loading plugins into a reinstalled GHC (#20742) which will be
tighted up in due course.
Fixes #19896
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/driver/testlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py index 8e286d32f8..bec08a490c 100644 --- a/testsuite/driver/testlib.py +++ b/testsuite/driver/testlib.py @@ -877,7 +877,7 @@ def normalise_win32_io_errors(name, opts): def normalise_version_( *pkgs ): def normalise_version__( str ): - return re.sub('(' + '|'.join(map(re.escape,pkgs)) + ')-[0-9.]+', + return re.sub('(' + '|'.join(map(re.escape,pkgs)) + ')-[0-9.]+(-[0-9a-f]+)?', '\\1-<VERSION>', str) return normalise_version__ |