[commit: ghc] wip/nfs-locking: Make build.sh call the default build script (build.cabal.sh) (0aa31f9)
git at git.haskell.org
git at git.haskell.org
Fri Oct 27 01:02:12 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/0aa31f9717e1ecb1a0b73a605a6695f8ee11e28a/ghc
>---------------------------------------------------------------
commit 0aa31f9717e1ecb1a0b73a605a6695f8ee11e28a
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Mon Oct 23 21:33:32 2017 +0100
Make build.sh call the default build script (build.cabal.sh)
See #428.
Also see #440: build.sh may later be relocated to the top of the GHC tree.
>---------------------------------------------------------------
0aa31f9717e1ecb1a0b73a605a6695f8ee11e28a
build.sh => build.cabal.sh | 0
build.sh | 74 ++--------------------------------------------
2 files changed, 2 insertions(+), 72 deletions(-)
diff --git a/build.sh b/build.cabal.sh
old mode 100755
new mode 100644
similarity index 100%
copy from build.sh
copy to build.cabal.sh
diff --git a/build.sh b/build.sh
index d2bdb85..460fdc1 100755
--- a/build.sh
+++ b/build.sh
@@ -1,74 +1,4 @@
#!/usr/bin/env bash
-CABAL=cabal
-
-set -euo pipefail
-
-# readlink on os x, doesn't support -f, to prevent the
-# need of installing coreutils (e.g. through brew, just
-# for readlink, we use the follownig substitute.
-#
-# source: http://stackoverflow.com/a/1116890
-function rl {
- TARGET_FILE="$1"
-
- cd "$(dirname "$TARGET_FILE")"
- TARGET_FILE="$(basename "$TARGET_FILE")"
-
- # Iterate down a (possible) chain of symlinks
- while [ -L "$TARGET_FILE" ]
- do
- TARGET_FILE="$(readlink "$TARGET_FILE")"
- cd "$(dirname "$TARGET_FILE")"
- TARGET_FILE="$(basename "$TARGET_FILE")"
- done
-
- # Compute the canonicalized name by finding the physical path
- # for the directory we're in and appending the target file.
- PHYS_DIR="$(pwd -P)"
- RESULT="$PHYS_DIR/$TARGET_FILE"
- echo "$RESULT"
-}
-
-absoluteRoot="$(dirname "$(rl "$0")")"
-cd "$absoluteRoot"
-
-if ! type "$CABAL" > /dev/null; then
- echo "Please make sure 'cabal' is in your PATH"
- exit 2
-fi
-
-CABVERSTR=$("$CABAL" --numeric-version)
-
-CABVER=( ${CABVERSTR//./ } )
-
-if [ "${CABVER[0]}" -gt 2 -o "${CABVER[0]}" -eq 2 -a "${CABVER[1]}" -ge 1 ]; then
- # New enough Cabal version detected, so let's use the superior new-build + new-run
- # modes. Note that pre-2.1 Cabal does not support passing additional parameters
- # to the executable (hadrian) after the separator '--', see #438.
-
- "$CABAL" new-build --disable-profiling --disable-documentation -j exe:hadrian
- "$CABAL" new-run hadrian -- \
- --lint \
- --directory "$absoluteRoot/.." \
- "$@"
-
-else
- # The logic below is quite fragile, but it's better than nothing for pre-2.1 Cabal.
- echo "Old pre cabal 2.1 version detected. Falling back to legacy 'cabal sandbox' mode."
-
- # Initialize sandbox if necessary
- if ! ( "$CABAL" sandbox hc-pkg list > /dev/null 2>&1); then
- "$CABAL" sandbox init
- "$CABAL" sandbox add-source ../libraries/Cabal/Cabal
- "$CABAL" install \
- --dependencies-only \
- --disable-library-profiling \
- --disable-shared
- fi
-
- "$CABAL" run hadrian -- \
- --lint \
- --directory "$absoluteRoot/.." \
- "$@"
-fi
+# By default on Linux/MacOS we build Hadrian using Cabal
+./build.cabal.sh "$@"
More information about the ghc-commits
mailing list