aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/vendors/compile-uvvm.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vendors/compile-uvvm.ps1')
-rw-r--r--scripts/vendors/compile-uvvm.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/vendors/compile-uvvm.ps1 b/scripts/vendors/compile-uvvm.ps1
index fefd755a6..ddd4919b7 100644
--- a/scripts/vendors/compile-uvvm.ps1
+++ b/scripts/vendors/compile-uvvm.ps1
@@ -168,9 +168,11 @@ $VHDLVersion,$VHDLStandard,$VHDLFlavor = Get-VHDLVariables
# define global GHDL Options
$Analyze_Parameters = @(
+ "--std=$VHDLStandard",
+ "-fexplicit",
+ "-frelaxed-rules",
"--mb-comments",
"-Wbinding",
- "-fexplicit",
"-Wno-shared" # UVVM specific
)
if (-not $EnableDebug)
@@ -187,8 +189,6 @@ if (-not ($EnableVerbose -or $EnableDebug))
$Analyze_Parameters += @(
"--ieee=$VHDLFlavor",
"--no-vital-checks",
- "--std=$VHDLStandard",
- "-frelaxed",
"-P$DestinationDirectory"
)