view compile @ 364:e44f65abaf0e

Support labels in non-branch instructions. String literals now work and so does the llhello sample
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Apr 2015 11:16:14 -0700
parents 6dfbf5691a7f
children
line wrap: on
line source

#!/bin/sh

cname=`basename $1`.c

if test -f "$cname"; then
	rm "$cname"
fi

dir=`dirname $0`
$dir/tpc $1 -o $cname -basedir $dir/

if test ! -s "$cname"; then
	echo "Compilation to C failed"
	exit 1
fi

bin=`echo $1 | sed 's/\.tp//'`
shift
echo gcc $@ -o $bin $cname $dir/runtime/object.c -lgc
gcc -o $bin $cname $dir/runtime/object.c -I$dir $@ -lgc