author | wenzelm |
Thu, 08 Nov 2018 15:52:10 +0100 | |
changeset 69267 | 517655a528fe |
parent 69265 | bd215c56cd96 |
permissions | -rwxr-xr-x |
69151 | 1 |
#!/usr/bin/env bash |
2 |
# |
|
3 |
# Author: Makarius |
|
4 |
# |
|
5 |
# DESCRIPTION: invoke Glasgow Haskell Compiler within the Isabelle environment |
|
6 |
||
69160 | 7 |
if [ -d "$ISABELLE_STACK_ROOT" -a -n "$ISABELLE_GHC" ]; then |
69267
517655a528fe
always insist in specified resolver/compiler version;
wenzelm
parents:
69265
diff
changeset
|
8 |
isabelle_stack ghc -- "$@" |
69158
1722cc56d22e
more robust: avoid implicit setup (with default resolver);
wenzelm
parents:
69151
diff
changeset
|
9 |
else |
69160 | 10 |
echo "Cannot execute ghc: missing Isabelle GHC setup" >&2 |
69158
1722cc56d22e
more robust: avoid implicit setup (with default resolver);
wenzelm
parents:
69151
diff
changeset
|
11 |
exit 127 |
1722cc56d22e
more robust: avoid implicit setup (with default resolver);
wenzelm
parents:
69151
diff
changeset
|
12 |
fi |