aboutsummaryrefslogtreecommitdiffstats
path: root/translate/mcode/windows/compile.bat
blob: c668ef0e27924c197fea2ccb77eb9309d00556cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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