aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-01-21 04:57:25 +0100
committerTristan Gingold <tgingold@free.fr>2015-01-21 04:57:25 +0100
commit2ed44b53f4c88ff4253ba1bfdb69ba7405046ef3 (patch)
tree88aee7d05400dad238e7a8d21ca4edfcfbd5a799 /dist
parent7603c2ac9167cd4425f92025ae21b1814c49eed0 (diff)
downloadghdl-2ed44b53f4c88ff4253ba1bfdb69ba7405046ef3.tar.gz
ghdl-2ed44b53f4c88ff4253ba1bfdb69ba7405046ef3.tar.bz2
ghdl-2ed44b53f4c88ff4253ba1bfdb69ba7405046ef3.zip
Fixed paths in winbuild.bat to reflect source tree reorganization (Brian Davis)
Diffstat (limited to 'dist')
-rw-r--r--dist/mcode/windows/compile.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/dist/mcode/windows/compile.bat b/dist/mcode/windows/compile.bat
index 9c4df378b..95e23b53b 100644
--- a/dist/mcode/windows/compile.bat
+++ b/dist/mcode/windows/compile.bat
@@ -3,12 +3,12 @@ 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_jit -aI../../../ortho -o ghdl.exe -largs grt-cbinding.o clock.o grt-cvpi.o memsegs_c.o win32.o -largs -Wl,--stack,8404992
+gcc -c %CFLAGS% ../../../src/grt/grt-cbinding.c
+gcc -c %CFLAGS% ../../../src/grt/grt-cvpi.c
+gcc -c %CFLAGS% ../../../src/grt/config/clock.c
+gcc -c %CFLAGS% ../../../src/ortho/mcode/memsegs_c.c
+gcc -c %CFLAGS% -DWITH_GNAT_RUN_TIME ../../../src/grt/config/win32.c
+gnatmake %CFLAGS% -gnatn -aI../windows -aI../../../src -aI../../../src/ghdldrv -aI../../../src/psl -aI../../../src/grt -aI../../../src/ortho/mcode -aI../../../src/vhdl -aI../../../src/vhdl/translate ghdl_jit -aI../../../src/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