diff options
author | Patrick Lehmann | 2015-01-31 00:12:00 +0100 |
---|---|---|
committer | Patrick Lehmann | 2015-01-31 00:12:00 +0100 |
commit | 2c6e57d18d5dc0b7f358f8f9e4fb7ec07959b188 (patch) | |
tree | f793d61ea66890b6472725b85f9d9462272358e7 /dist/mcode | |
parent | d4513ae22c1bacffa3ee003b6be9ed342e6d4c77 (diff) | |
download | ghdl-2c6e57d18d5dc0b7f358f8f9e4fb7ec07959b188.tar.gz ghdl-2c6e57d18d5dc0b7f358f8f9e4fb7ec07959b188.tar.bz2 ghdl-2c6e57d18d5dc0b7f358f8f9e4fb7ec07959b188.zip |
winbuild: Fixed missing strip call to reduce the binary size of ghdl.exe.
Diffstat (limited to 'dist/mcode')
-rw-r--r-- | dist/mcode/windows/compile.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/mcode/windows/compile.ps1 b/dist/mcode/windows/compile.ps1 index 2dea73a..6f208ee 100644 --- a/dist/mcode/windows/compile.ps1 +++ b/dist/mcode/windows/compile.ps1 @@ -212,10 +212,10 @@ elseif ($Compile) if ($Script_ExitCode -eq 0)
{ #
Write-Host " stripping executable..."
- #& $StripExecutable $GHDLExecutable
+ & $StripExecutable $GHDLExecutable
}
- if ($true) #$Script_ExitCode -eq 0)
+ if ($Script_ExitCode -eq 0)
{ # compile with GNAT
$Parameters = @()
$Parameters += $CFlags
|