Admin/polyml/future/run
author wenzelm
Mon, 11 Feb 2013 14:39:04 +0100
changeset 51085 d90218288d51
parent 44155 ae2906662eec
permissions -rwxr-xr-x
make WWW_Find work again, now that its ML modules reside within a theory context (cf. bf5b45870110) -- patch by Rafal Kolanski;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44153
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     1
#!/bin/bash
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     2
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     3
POLY="${1:-poly}"
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     4
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     5
THIS="$(cd $(dirname "$0"); pwd)"
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     6
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     7
cd "$THIS/../../../src/Pure"
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
     8
echo "use \"../../Admin/polyml/future/ROOT.ML\";"
44155
wenzelm
parents: 44153
diff changeset
     9
exec "$POLY"
44153
aefbb5cc8908 minimal script to run raw Poly/ML with concurrency library;
wenzelm
parents:
diff changeset
    10