aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/vendors/compile-lattice.ps1
diff options
context:
space:
mode:
authorHauke Günther <hauke.guenther@sieb-meyer.de>2022-02-16 20:04:03 +0100
committerHauke Günther <hauke.guenther@sieb-meyer.de>2022-02-16 20:46:04 +0100
commitaac469695217b217544f6012da1f7ccf9399f754 (patch)
tree9ebc4d61cb1cfda3914f74e3663db4b6f0e7923b /scripts/vendors/compile-lattice.ps1
parenta5a0de540287e034f2096ccc1205e96e4d79523e (diff)
downloadghdl-aac469695217b217544f6012da1f7ccf9399f754.tar.gz
ghdl-aac469695217b217544f6012da1f7ccf9399f754.tar.bz2
ghdl-aac469695217b217544f6012da1f7ccf9399f754.zip
Fixed failing vendor library compilation using PoSh scripts
Diffstat (limited to 'scripts/vendors/compile-lattice.ps1')
-rw-r--r--scripts/vendors/compile-lattice.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vendors/compile-lattice.ps1 b/scripts/vendors/compile-lattice.ps1
index 0cf23e84a..7e36c322d 100644
--- a/scripts/vendors/compile-lattice.ps1
+++ b/scripts/vendors/compile-lattice.ps1
@@ -370,7 +370,7 @@ if ((-not $StopCompiling) -and $xp)
{ $Library = "xp"
$SourceFiles = $FileLists[$Library] | % { "$SourceDirectory\$Library\src\$_" }
- $ErrorCount += Start-PackageCompilation $GHDLBinary $GHDLOptions $DestinationDirectory $Library $VHDLVersion $SourceFiles $SuppressWarnings $HaltOnError -Verbose:$EnableVerbose -Debug:$EnableDebug
+ $ErrorCount += Start-PackageCompilation $GHDLBinary $Analyze_Parameters $DestinationDirectory $Library $VHDLVersion $SourceFiles $SuppressWarnings $HaltOnError -Verbose:$EnableVerbose -Debug:$EnableDebug
$StopCompiling = $HaltOnError -and ($ErrorCount -ne 0)
}
@@ -380,7 +380,7 @@ if ((-not $StopCompiling) -and $xp2)
{ $Library = "xp2"
$SourceFiles = $FileLists[$Library] | % { "$SourceDirectory\$Library\src\$_" }
- $ErrorCount += Start-PackageCompilation $GHDLBinary $GHDLOptions $DestinationDirectory $Library $VHDLVersion $SourceFiles $SuppressWarnings $HaltOnError -Verbose:$EnableVerbose -Debug:$EnableDebug
+ $ErrorCount += Start-PackageCompilation $GHDLBinary $Analyze_Parameters $DestinationDirectory $Library $VHDLVersion $SourceFiles $SuppressWarnings $HaltOnError -Verbose:$EnableVerbose -Debug:$EnableDebug
$StopCompiling = $HaltOnError -and ($ErrorCount -ne 0)
}