diff options
author | Tristan Gingold | 2015-10-23 07:50:14 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-10-23 07:50:14 +0200 |
commit | acbb3cb3c3d04f7c4476b53884af54cb748c45a8 (patch) | |
tree | 41ef2be178a2c261291b9c607c963668a3f9739f | |
parent | 16e6c614b6916c42bc47ad9dfee5d6cb70922d6f (diff) | |
download | ghdl-acbb3cb3c3d04f7c4476b53884af54cb748c45a8.tar.gz ghdl-acbb3cb3c3d04f7c4476b53884af54cb748c45a8.tar.bz2 ghdl-acbb3cb3c3d04f7c4476b53884af54cb748c45a8.zip |
Update legacy build script for windows.
-rw-r--r-- | dist/mcode/winbuild.bat | 2 | ||||
-rw-r--r-- | dist/mcode/windows/ghdl.nsi | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/dist/mcode/winbuild.bat b/dist/mcode/winbuild.bat index 8c28268..261f9f1 100644 --- a/dist/mcode/winbuild.bat +++ b/dist/mcode/winbuild.bat @@ -5,7 +5,7 @@ call windows\complib if errorlevel 1 goto end
gnatmake windows/ghdlversion -o windows/ghdlversion.exe
-windows\ghdlversion < ../../version.ads > windows/version.nsi
+windows\ghdlversion < ..\..\src\version.ads > windows\version.nsi
"c:\Program Files\NSIS\makensis" windows\ghdl.nsi
if errorlevel 1 goto end
diff --git a/dist/mcode/windows/ghdl.nsi b/dist/mcode/windows/ghdl.nsi index aa4d559..5b21aea 100644 --- a/dist/mcode/windows/ghdl.nsi +++ b/dist/mcode/windows/ghdl.nsi @@ -138,6 +138,8 @@ Section "VHDL standard and ieee libraries" File /r ..\lib\v87\std ..\lib\v87\ieee
SetOutPath $INSTDIR\lib\v93
File /r ..\lib\v93\std ..\lib\v93\ieee
+ SetOutPath $INSTDIR\lib\v08
+ File /r ..\lib\v08\std ..\lib\v08\ieee
SectionEnd
Section "Synopsys libraries (Recommended)"
@@ -187,6 +189,7 @@ path_not_set: ; Remove files and uninstaller
Delete $INSTDIR\bin\ghdl.exe
+ Delete $INSTDIR\bin\ghdl.htm
Delete $INSTDIR\uninst-ghdl.exe
Delete $INSTDIR\COPYING.txt
RMDir $INSTDIR\bin
|