diff options
author | Tristan Gingold | 2016-01-09 09:17:10 +0100 |
---|---|---|
committer | Tristan Gingold | 2016-01-09 09:17:10 +0100 |
commit | e2b7851cf99ed2f91ae55101c546141cf2e20049 (patch) | |
tree | 096315f50741981d753bd3d04a32073ec11a3732 /dist | |
parent | de9b850acd840f3f398f92deb526ea11284bb099 (diff) | |
download | ghdl-e2b7851cf99ed2f91ae55101c546141cf2e20049.tar.gz ghdl-e2b7851cf99ed2f91ae55101c546141cf2e20049.tar.bz2 ghdl-e2b7851cf99ed2f91ae55101c546141cf2e20049.zip |
windows bat command: move strip command.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/mcode/winbuild.bat | 2 | ||||
-rw-r--r-- | dist/mcode/windows/compile.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dist/mcode/winbuild.bat b/dist/mcode/winbuild.bat index 261f9f1..670b77d 100644 --- a/dist/mcode/winbuild.bat +++ b/dist/mcode/winbuild.bat @@ -4,6 +4,8 @@ if errorlevel 1 goto end call windows\complib
if errorlevel 1 goto end
+strip build\ghdl.exe
+
gnatmake windows/ghdlversion -o windows/ghdlversion.exe
windows\ghdlversion < ..\..\src\version.ads > windows\version.nsi
diff --git a/dist/mcode/windows/compile.bat b/dist/mcode/windows/compile.bat index ef9d362..0c0e331 100644 --- a/dist/mcode/windows/compile.bat +++ b/dist/mcode/windows/compile.bat @@ -22,8 +22,6 @@ if errorlevel 1 goto failed 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 -ldbghelp -Wl,--stack,8404992 if errorlevel 1 goto failed -strip ghdl.exe - cd .. exit /b 0 |