diff test/build.bat @ 18:ea991f95ae1f

C backend working well enough to generate Fib test
author Mike Pavone <pavone@retrodev.com>
date Wed, 27 May 2009 04:49:32 -0400
parents 31f8182f3433
children
line wrap: on
line diff
--- a/test/build.bat	Tue May 26 23:37:59 2009 -0400
+++ b/test/build.bat	Wed May 27 04:49:32 2009 -0400
@@ -2,12 +2,12 @@
 cd ..\build
 
 for %%f in (..\test\*.c ..\runtime\object.c ..\runtime\context.c ..\runtime\builtin.c ..\runtime\bool.c ..\runtime\integer.c) do (
-	cl /c /Ox /I..\runtime %%f
+	cl /c /O2 /I..\runtime %%f
 	if errorlevel 1 goto end
 )
 
-cl /Ox test.obj object.obj context.obj builtin.obj bool.obj integer.obj
-cl /Ox fib.obj object.obj context.obj builtin.obj bool.obj integer.obj winmm.lib
+cl /O2 test.obj object.obj context.obj builtin.obj bool.obj integer.obj
+cl /O2 fib.obj object.obj context.obj builtin.obj bool.obj integer.obj winmm.lib
 
 :end
 cd ..\test
\ No newline at end of file