Skip to content
Snippets Groups Projects
Forked from Glasgow Haskell Compiler / GHC
6236 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
build-stack 358 B
#!/usr/bin/env bash

# Make sure that the script exits if Hadrian fails to build
set -euo pipefail

STACK="${STACK:-stack}"

# Make sure Hadrian is up-to-date
cd hadrian
$STACK build --no-library-profiling "${HADRIAN_NIX:+--nix}"

# Run Hadrian in the top-level GHC directory
$STACK exec hadrian "${HADRIAN_NIX:+--nix}" -- \
    --directory ".."  \
    "$@"