Hadrian is a new build system for the Glasgow Haskell Compiler. It is based on Shake and we hope that it will eventually replace the current
make-based build system. If you are curious about the rationale behind the
project and the architecture of the new build system you can find more details in
this Haskell Symposium 2016 paper and this Haskell eXchange 2016 talk.The new build system can work side-by-side with the existing build system. Note, there is some interaction between them: they put (some) build results in the same directories, e.g.
inplace/bin/ghc-stage1.Your first build
Beware, the build system is in the alpha development phase. Things are shaky and often break; there are numerous known issues. Not afraid? Then put on the helmet and follow these steps:- If you have never built GHC before, start with the preparation guide.
- This build system is written in Haskell (obviously) and depends on the following Haskell
packages, which need to be installed:
ansi-terminal mtl shake quickcheck. - Get the sources. It is important for the build system to be in the
hadriandirectory of the GHC source tree:
git clone --recursive git://git.haskell.org/ghc.git cd ghc git clone git://github.com/snowleopard/hadrian - Build GHC using
hadrian/build.shorhadrian/build.bat(on Windows) instead ofmake. You might want to enable parallelism with-j. We will further refer to the build script simply asbuild. If you are interested in building in a Cabal sandbox or using Stack, have a look atbuild.cabal.shandbuild.stack.shscripts. Also see instructions for building GHC on Windows using Stack. Note, Hadrian runs thebootandconfigurescripts automatically on the first build, so that you don't need to. Use--skip-configureto suppress this behaviour (see overview of command line flags below).
Using the build system
Once your first build is successful, simply runbuild to rebuild. Build results
are placed into _build and inplace directories.Command line flags
In addition to standard Shake flags (try--help), the build system
currently supports several others:--flavour=FLAVOUR: choose a build flavour. Two settings are currently supported:defaultandquick(adds-O0flag to all GHC invocations and disables library profiling, which speeds up builds by 3-4x).--haddock: build Haddock documentation.--progress-colour=MODE: choose whether to use colours when printing build progress info. There are three settings:never(do not use colours),auto(attempt to detect whether the console supports colours; this is the default setting), andalways(use colours).--progress-info=STYLE: choose how build progress info is printed. There are four settings:none,brief(one line per build command),normal(typically a box per build command; this is the default setting), andunicorn(whennormaljust won't do).--skip-configure: use this flag to suppress the default behaviour of Hadrian that runs thebootandconfigurescripts automatically if need be, so that you don't have to remember to run them manually. With--skip-configureyou will need to manually run:
as you normally do when using./boot ./configure # On Windows run ./configure --enable-tarballs-autodownloadmake. Beware, by default Hadrian may do network I/O on Windows to download necessary tarballs, which may sometimes be undesirable;--skip-configureis your friend in such cases.--split-objects: generate split objects, which are switched off by default. Due to a GHC bug, you need a full clean rebuild when using this flag.--verbose: run Hadrian in verbose mode. In particular this prints diagnostic messages by Shake oracles.
User settings
Themake-based build system uses mk/build.mk to specify user build settings. We
use hadrian/UserSettings.hs for the same purpose, see documentation.Clean and full rebuild
build cleanremoves all build artefacts.build -Bforces Shake to rerun all rules, even if the previous build results are are still up-to-date.
Source distribution
To build a GHC source distribution tarball, run Hadrian with thesdist-ghc target.Testing
build validateruns GHC tests by simply executingmake fastintestsuite/testsdirectory. This can be used instead ofsh validate --fast --no-cleanin the existing build system. Note: this will rebuild Stage2 GHC,ghc-pkgandhpcif they are out of date.build testruns GHC tests by calling thetestsuite/driver/runtests.pypython script with appropriate flags. The current implementation is limited and cannot replace thevalidatescript (see #187).build selftestruns tests of the build system. Current test coverage is close to zero (see #197).
Current limitations
The new build system still lacks many important features:- We only build
vanillaandprofilingway: #4. - Validation is not implemented: #187.
- Only HTML Haddock documentation is supported (use
--haddockflag). - Build flavours and conventional command line flags are not implemented: #188.
- Cross-compilation is not implemented: #177.
- There is no support for installation or binary distribution: #219.
Check out milestones to see when we hope to resolve the above limitations.
from https://github.com/snowleopard/hadrian