author | wenzelm |
Sun, 30 Jan 2011 13:02:18 +0100 | |
changeset 41648 | 6d736d983d5c |
parent 41308 | 9e576ec5c0dc |
child 41690 | 53b1da988e75 |
permissions | -rw-r--r-- |
40545 | 1 |
# -*- shell-script -*- :mode=shellscript: |
39462
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
2 |
|
41308 | 3 |
# FIXME contrib_devel not official |
4 |
# FIXME $(type -p swipl) etc. does not allow spaces in file name |
|
5 |
||
40545 | 6 |
EXEC_SWIPL="$(choosefrom \ |
40243
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
7 |
"$ISABELLE_HOME/contrib/swipl/$ISABELLE_PLATFORM/bin/swipl" \ |
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
8 |
"$ISABELLE_HOME/contrib_devel/swipl/$ISABELLE_PLATFORM/bin/swipl" \ |
39462
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
9 |
"$ISABELLE_HOME/../swipl" \ |
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
10 |
$(type -p swipl) \ |
40545 | 11 |
"")" |
39462
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
12 |
|
40545 | 13 |
EXEC_YAP="$(choosefrom \ |
40243
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
14 |
"$ISABELLE_HOME/contrib/yap/$ISABELLE_PLATFORM/bin/yap" \ |
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
15 |
"$ISABELLE_HOME/contrib_devel/yap/$ISABELLE_PLATFORM/bin/yap" \ |
39462
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
16 |
"$ISABELLE_HOME/../yap" \ |
3a86194d1534
registering code_prolog as component; using environment variable; adding settings file for prolog code generation
bulwahn
parents:
diff
changeset
|
17 |
$(type -p yap) \ |
40545 | 18 |
"")" |
40243
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
19 |
|
3102b27ca03a
adding a simple check to only run with a SWI-Prolog version known to work
bulwahn
parents:
39462
diff
changeset
|
20 |
SWIPL_VERSION=$("$COMPONENT/lib/scripts/swipl_version") |