Files
why3/lib/why3-call-pvs
Guillaume Melquiond 7707e9ec9e Support realizations compiled afterward (fixes issue #75).
Why3 now looks for a %l/{coq,pvs}/version file to check which version of a
prover was used to compile realizations. In particular, there is no longer
any Config.compile_time_support variable set once and for all.
2018-03-22 18:31:26 +01:00

10 lines
152 B
Bash
Executable File

#!/bin/sh
if test -z "$PVS_LIBRARY_PATH"; then
export PVS_LIBRARY_PATH=$1
else
export PVS_LIBRARY_PATH=$1:$PVS_LIBRARY_PATH
fi
shift
exec "$@"