aboutsummaryrefslogtreecommitdiffstats
path: root/src/translate/mcode/windows/compile.bat
diff options
context:
space:
mode:
Diffstat (limited to 'src/translate/mcode/windows/compile.bat')
-rw-r--r--src/translate/mcode/windows/compile.bat24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/translate/mcode/windows/compile.bat b/src/translate/mcode/windows/compile.bat
deleted file mode 100644
index c668ef0e2..000000000
--- a/src/translate/mcode/windows/compile.bat
+++ /dev/null
@@ -1,24 +0,0 @@
-mkdir build
-cd build
-
-rem Do the compilation
-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../../../psl -aI../../grt -aI../../../ortho/mcode ghdl_mcode -aI../../../ortho -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
-