comparison ctobin @ 139:a68e6828d896

Global stores and transactions are working. Definately leaks memory on retries. Probably a fair number of bugs to work out. However, a basic test program works.
author Mike Pavone <pavone@retrodev.com>
date Fri, 19 Nov 2010 04:04:14 -0500
parents e556416e9c91
children 7bbdc034e347
comparison
equal deleted inserted replaced
138:1411de6050e1 139:a68e6828d896
18 CC="gcc" 18 CC="gcc"
19 fi 19 fi
20 20
21 file=$1 21 file=$1
22 shift 22 shift
23 echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c" 23 echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c transaction.c"
24 $CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c 24 $CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c transaction.c
25 25
26 cd .. 26 cd ..
27 27