view compile @ 317:6dfbf5691a7f

Move where additional parameters are inserted in gcc command line so that additional libs can be specified
author Michael Pavone <pavone@retrodev.com>
date Thu, 19 Mar 2015 22:39:42 -0700
parents f2aff12d8e87
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