aboutsummaryrefslogtreecommitdiffstats
path: root/dist/mcode/windows/compile-libraries.ps1
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@tu-dresden.de>2016-10-14 14:17:13 +0200
committerPatrick Lehmann <Patrick.Lehmann@tu-dresden.de>2016-10-14 14:17:13 +0200
commitd1fb7f9772ec1a4fafb39c75a52ef064b6467398 (patch)
treeb7cca307b5a467980b70e7677a6c8a23084b1e05 /dist/mcode/windows/compile-libraries.ps1
parent1a1d378dcafeca5a18dfa8862ebe412efa1e9718 (diff)
downloadghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.tar.gz
ghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.tar.bz2
ghdl-d1fb7f9772ec1a4fafb39c75a52ef064b6467398.zip
Windows Build Flow: Fixed error of premature module unload.
Diffstat (limited to 'dist/mcode/windows/compile-libraries.ps1')
-rw-r--r--dist/mcode/windows/compile-libraries.ps113
1 files changed, 1 insertions, 12 deletions
diff --git a/dist/mcode/windows/compile-libraries.ps1 b/dist/mcode/windows/compile-libraries.ps1
index 01ab7712b..73e1cf766 100644
--- a/dist/mcode/windows/compile-libraries.ps1
+++ b/dist/mcode/windows/compile-libraries.ps1
@@ -91,22 +91,11 @@ $EnableVerbose = $PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent
$EnableDebug = $PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent
# load modules from GHDL's 'libraries' directory
-Import-Module $PSScriptRoot\shared.psm1 -Verbose:$false -ArgumentList "$Script_WorkingDir"
+Import-Module $PSScriptRoot\shared.psm1 -Verbose:$false -ArgumentList "$Script_WorkingDir", $Hosted
# Display help if no command was selected
$Help = $Help -or (-not ($Compile -or $VHDL87 -or $VHDL93 -or $VHDL2008 -or $Clean))
-function Exit-CompileScript
-{ [CmdletBinding()]
- param(
- [int]$ExitCode = 0
- )
- cd $Script_WorkingDir
- # unload modules
- Remove-Module shared -Verbose:$false
- exit $ExitCode
-}
-
if ($Help)
{ Get-Help $MYINVOCATION.InvocationName -Detailed
Exit-CompileScript