Admin/polyml/polyi
author wenzelm
Fri, 09 Feb 2018 11:14:13 +0100
changeset 67580 eb64467e8bcf
parent 63229 f951c624c1a1
permissions -rwxr-xr-x
more robust access to shared libraries for poly executable: avoid global change of LD_LIBRARY_PATH (e.g. relevant for subprocesses);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33833
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     1
#!/usr/bin/env bash
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     2
#
63229
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
     3
# Portable Poly/ML command-line tool
33833
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     4
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     5
THIS="$(cd "$(dirname "$0")"; pwd)"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     6
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     7
export DYLD_LIBRARY_PATH="$THIS:$DYLD_LIBRARY_PATH"
c38c2a1883e7 minimal Poly/ML startup script;
wenzelm
parents:
diff changeset
     8
63229
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
     9
if type -p rlwrap > /dev/null
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
    10
then
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
    11
  exec rlwrap "$THIS/poly" "$@"
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
    12
else
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
    13
  exec "$THIS/poly" "$@"
f951c624c1a1 updated to recent changes of Poly/ML directory layout;
wenzelm
parents: 60983
diff changeset
    14
fi