Add script for invoking the Mercury SICStus Prolog interpreter.

mercury/scripts/msp.sh:
	Add script for invoking the Mercury SICStus Prolog interpreter.
This commit is contained in:
Fergus Henderson
1995-03-18 14:21:52 +00:00
parent 4f3cd5c3f4
commit b8f65b6dfb

14
scripts/msp.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
# msp - Mercury SICStus Prolog Interpreter
#
# A version of `sp' with `sp_builtin' and the Mercury library already loaded.
#
# Usage: msp [<sp options>]
#
# Environment variables: MERCURY_SICSTUS_INTERPRETER
INTERPRETER=\
${MERCURY_SICSTUS_INTERPRETER:-@LIBDIR@/sicstus/@FULLARCH@/library.sicstus}
exec $INTERPRETER "$@"