From f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac Mon Sep 17 00:00:00 2001 From: gingold Date: Mon, 2 Oct 2006 04:32:49 +0000 Subject: compile from svn repo --- translate/mcode/windows/compile.bat | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'translate/mcode/windows/compile.bat') diff --git a/translate/mcode/windows/compile.bat b/translate/mcode/windows/compile.bat index fafbb25..be0aaec 100644 --- a/translate/mcode/windows/compile.bat +++ b/translate/mcode/windows/compile.bat @@ -2,12 +2,23 @@ mkdir build cd build rem Do the compilation -gcc -c -O ../grt/grt-cbinding.c -gcc -c -O ../grt/grt-cvpi.c -gcc -c -O ../grt/config/clock.c -gcc -c -O ../ortho/memsegs_c.c -gcc -c -O -DWITH_GNAT_RUN_TIME ../grt/config/win32.c -gnatmake -O -gnatn -aI../windows -aI../ghdl -aI../ghdldrv -aI../grt -aI../ortho ghdl_mcode -o ghdl.exe -largs grt-cbinding.o clock.o grt-cvpi.o memsegs_c.o win32.o +set CFLAGS=-O -g +gcc -c %CFLAGS% ../../grt/grt-cbinding.c +gcc -c %CFLAGS% ../../grt/grt-cvpi.c +gcc -c %CFLAGS% ../../grt/config/clock.c +gcc -c %CFLAGS% ../../../ortho/mcode/memsegs_c.c +gcc -c %CFLAGS% -DWITH_GNAT_RUN_TIME ../../grt/config/win32.c +gnatmake %CFLAGS% -gnatn -aI../windows -aI../../.. -aI../.. -aI../../ghdldrv -aI../../grt -aI../../../ortho/mcode ghdl_mcode -o ghdl.exe -largs grt-cbinding.o clock.o grt-cvpi.o memsegs_c.o win32.o -largs -Wl,--stack,8404992 + +if errorlevel 1 goto failed + strip ghdl.exe cd .. +exit /b 0 + +:failed +echo "Compilation failed" +cd .. +exit /b 1 + \ No newline at end of file -- cgit