Hadrian
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 and initial
ideas behind the project you can find more details on the wiki page
and in this blog post. This project was formerly known as Shaking-up-GHC.
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
hadrian
directory 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.sh
orhadrian/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.sh
andbuild.stack.sh
scripts. Also see instructions for building GHC on Windows using Stack. Note, Hadrian runs theboot
andconfigure
scripts automatically on the first build, so that you don't need to. Use--skip-configure
to suppress this behaviour (see overview of command line flags below). -
Also note on OS X newer versions of XCode ship with a broken
nm
tool (#11744). One way to mitigate the problem is to add the following into yourUserSettings.hs
:userArgs :: Args userArgs = builder (Configure ".") ? arg "--with-nm=$(xcrun --find nm-classic)"
Using the build system
Once your first build is successful, simply run build
to rebuild. Most build artefacts
are placed into _build
and inplace
directories (#113).
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:default
andquick
(adds-O0
flag 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
(whennormal
just won't do). -
--skip-configure
: use this flag to suppress the default behaviour of Hadrian that runs theboot
andconfigure
scripts automatically if need be, so that you don't have to remember to run them manually. With--skip-configure
you will need to manually run:./boot ./configure # On Windows run ./configure --enable-tarballs-autodownload
as you normally do when using make
. Beware, by default Hadrian may do network I/O on
Windows to download necessary tarballs, which may sometimes be undesirable; --skip-configure
is 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
The make
-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 clean
removes all build artefacts. Note, we are working towards a complete separation of GHC sources and build artefacts: #113. -
build -B
forces Shake to rerun all rules, even if results of the previous build are still in the GHC tree.
Testing
-
build validate
runs GHC tests by simply executingmake fast
intestsuite/tests
directory. This can be used instead ofsh validate --fast --no-clean
in the existing build system. Note: this will rebuild Stage2 GHC,ghc-pkg
andhpc
if they are out of date. -
build test
runs GHC tests by calling thetestsuite/driver/runtests.py
python script with appropriate flags. The current implementation is limited and cannot replace thevalidate
script (see #187). -
build selftest
runs 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
vanilla
andprofiling
way: #4. - Validation is not implemented: #187.
- Only HTML Haddock documentation is supported (use
--haddock
flag). - 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/source distribution: #219.
Check out milestones to see when we hope to resolve the above limitations.
How to contribute
The best way to contribute is to try the new build system, report the issues you found, and attempt to fix them. Please note the codebase is very unstable at present and we expect a lot of further refactoring. The documentation is currently non-existent, but we are working on it: #55, #56. See also #239 for a list of issues on the critical path.
Acknowledgements
I started this project as part of my 6-month research visit to Microsoft Research Cambridge, which was funded by Newcastle University, EPSRC, and Microsoft Research. I would like to thank Simon Peyton Jones, Neil Mitchell and Simon Marlow for kick-starting the project and for their guidance. Last but not least, big thanks to the project contributors, who helped me endure and enjoy the project.