heptagon/heptc
Léonard Gérard a54e570d0f Hept Scoping should be ok and documented,
Hept Parsing too,
all the reset to review carefully,
Typing to cut from all the scoping.
2010-09-09 19:48:20 +02:00

28 lines
553 B
Bash
Executable file

#!/bin/bash
#Small wrapper to deal with compilation of the compiler and the stdlib.
SCRIPT_DIR=`dirname $0`
COMPILER_DIR=compiler #relative to the script_dir
COMPILER=heptc.d.byte
HEPTC=$COMPILER_DIR/$COMPILER
RUN_DIR=`pwd`
cd $SCRIPT_DIR
if [ ! -x $HEPTC ] #compile the compiler
then
cd $COMPILER_DIR
ocamlbuild -j 0 $COMPILER
cd -
fi
if [ ! -e lib/pervasives.epci ] #compile the stdlib
then
$HEPTC -nopervasives lib/pervasives.epi
fi
cd $RUN_DIR
$SCRIPT_DIR/$HEPTC -stdlib $SCRIPT_DIR/lib "$@" #call the compiler with the passed arguments.