clarified quasi_consolidated status after 5f160df596c1 -- relevant for headless PIDE session (e.g. "isabelle dump");
#!/usr/bin/env bash
#
# Author: Makarius
#
# Invoke ocamlc via "opam".
if [ -d "$ISABELLE_OPAM_ROOT" ]
then
isabelle_opam config exec --switch "$ISABELLE_OCAML_VERSION" -- ocamlc "$@"
else
echo "Cannot execute ocamlc: missing Isabelle OCaml setup" >&2
exit 127
fi