From 2c6e57d18d5dc0b7f358f8f9e4fb7ec07959b188 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sat, 31 Jan 2015 00:12:00 +0100 Subject: winbuild: Fixed missing strip call to reduce the binary size of ghdl.exe. --- dist/mcode/windows/compile.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dist/mcode') 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 -- cgit