diff options
author | Patrick Lehmann <Paebbels@gmail.com> | 2022-07-03 14:55:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 14:55:45 +0200 |
commit | 2f676555ebf83280788f47f04fb22e7a8bf2b53f (patch) | |
tree | 3a71baa4bc8e1635d5f57a33f26217af8fa871c4 | |
parent | a33efb91d1573ce15c199cd1f89842f7170b69e4 (diff) | |
parent | 890b2fc4abc5717bec33c77829353e2264a3762c (diff) | |
download | ghdl-2f676555ebf83280788f47f04fb22e7a8bf2b53f.tar.gz ghdl-2f676555ebf83280788f47f04fb22e7a8bf2b53f.tar.bz2 ghdl-2f676555ebf83280788f47f04fb22e7a8bf2b53f.zip |
Fix docstring and a small bug in PoSh precompile script
-rw-r--r-- | scripts/vendors/compile-altera.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-intel.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-lattice.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-osvvm.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-uvvm.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-xilinx-ise.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/compile-xilinx-vivado.ps1 | 2 | ||||
-rw-r--r-- | scripts/vendors/shared.psm1 | 11 |
8 files changed, 14 insertions, 11 deletions
diff --git a/scripts/vendors/compile-altera.ps1 b/scripts/vendors/compile-altera.ps1 index 0c1f948cf..9587d3b86 100644 --- a/scripts/vendors/compile-altera.ps1 +++ b/scripts/vendors/compile-altera.ps1 @@ -81,7 +81,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/compile-intel.ps1 b/scripts/vendors/compile-intel.ps1 index 0e3ba781c..711daa80d 100644 --- a/scripts/vendors/compile-intel.ps1 +++ b/scripts/vendors/compile-intel.ps1 @@ -81,7 +81,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/compile-lattice.ps1 b/scripts/vendors/compile-lattice.ps1 index 7e36c322d..6fba8af9c 100644 --- a/scripts/vendors/compile-lattice.ps1 +++ b/scripts/vendors/compile-lattice.ps1 @@ -94,7 +94,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/compile-osvvm.ps1 b/scripts/vendors/compile-osvvm.ps1 index d93ca2d1d..93bb0babe 100644 --- a/scripts/vendors/compile-osvvm.ps1 +++ b/scripts/vendors/compile-osvvm.ps1 @@ -62,7 +62,7 @@ param( [string]$Source = "",
# Set output directory name.
[string]$Output = "",
- # Set GHDL binary directory.
+ # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe
[string]$GHDL = ""
)
diff --git a/scripts/vendors/compile-uvvm.ps1 b/scripts/vendors/compile-uvvm.ps1 index a8960be85..85f7a6046 100644 --- a/scripts/vendors/compile-uvvm.ps1 +++ b/scripts/vendors/compile-uvvm.ps1 @@ -95,7 +95,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/compile-xilinx-ise.ps1 b/scripts/vendors/compile-xilinx-ise.ps1 index 39b363117..0d5730c0c 100644 --- a/scripts/vendors/compile-xilinx-ise.ps1 +++ b/scripts/vendors/compile-xilinx-ise.ps1 @@ -72,7 +72,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/compile-xilinx-vivado.ps1 b/scripts/vendors/compile-xilinx-vivado.ps1 index a411ababa..bdf9c8b3d 100644 --- a/scripts/vendors/compile-xilinx-vivado.ps1 +++ b/scripts/vendors/compile-xilinx-vivado.ps1 @@ -64,7 +64,7 @@ param( [string]$Source = "", # Set output directory name. [string]$Output = "", - # Set GHDL binary directory. + # Set path to GHDL's executable, e.g. <MyGHDLPath>/bin/ghdl.exe [string]$GHDL = "" ) diff --git a/scripts/vendors/shared.psm1 b/scripts/vendors/shared.psm1 index bc6f6f93c..51f492874 100644 --- a/scripts/vendors/shared.psm1 +++ b/scripts/vendors/shared.psm1 @@ -156,16 +156,19 @@ function Get-GHDLBinary { $GHDLBinary = $env:GHDL } else { try - { write-host "calling which ..." - $GHDLBinary = (Get-Command "ghdl.exe").Source } + { Write-host "Calling Get-Command ..." + $GHDLBinary = (Get-Command "ghdl.exe" -ErrorAction Stop).Source } catch - { Write-Host "Use adv. options '-GHDL' to set the GHDL executable." -ForegroundColor Red + { Write-Host "Cannot find ghdl.exe." -ForegroundColor Red + Write-Host "Use adv. options '-GHDL' to set the GHDL executable." -ForegroundColor Red Exit-CompileScript -1 } } if (-not (Test-Path $GHDLBinary -PathType Leaf)) - { Write-Host "Use adv. options '-GHDL' to set the GHDL executable." -ForegroundColor Red + { + Write-Host "$GHDLBinary is not a file." -ForegroundColor Red + Write-Host "Use adv. options '-GHDL' to set the GHDL executable." -ForegroundColor Red Exit-CompileScript -1 } |