diff options
author | gingold | 2006-10-02 04:32:49 +0000 |
---|---|---|
committer | gingold | 2006-10-02 04:32:49 +0000 |
commit | f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac (patch) | |
tree | 6822276ce8d0bad100f407376bb760ace3b19e43 /translate/mcode/windows/compile.bat | |
parent | 1a8ab7e7b403ed41710166cba264606089510f67 (diff) | |
download | ghdl-f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac.tar.gz ghdl-f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac.tar.bz2 ghdl-f51d97cdfbb61a3c1b0456b32b5076d03ba5f8ac.zip |
compile from svn repo
Diffstat (limited to 'translate/mcode/windows/compile.bat')
-rw-r--r-- | translate/mcode/windows/compile.bat | 23 |
1 files changed, 17 insertions, 6 deletions
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 |