view ctobin @ 168:d2b941f82d74

Fix type of list constants in inference pass and return type of some Array related workers
author Mike Pavone <pavone@retrodev.com>
date Sun, 01 May 2011 18:41:17 -0700
parents 7bbdc034e347
children
line wrap: on
line source

#!/bin/sh

if test ! -f "$1.c"; then
	echo "C file missing! Maybe you need to do a full compile?"
	exit 1
fi

cp runtime/* build/
cp "$1.c" build/
cd build
bin=`echo $1 | sed s/\.rhope//`

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

if test -z $CC; then
	CC="gcc"
fi

file=$1
shift
echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c transaction.c net.c"
$CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c transaction.c net.c

cd ..