diff options
author | Hauke Günther <hauke.guenther@sieb-meyer.de> | 2022-06-22 22:15:28 +0200 |
---|---|---|
committer | Hauke Günther <hauke.guenther@sieb-meyer.de> | 2022-06-24 14:39:16 +0200 |
commit | 890b2fc4abc5717bec33c77829353e2264a3762c (patch) | |
tree | 0a960120434d1a441e5927875cae6f491ce11fe9 | |
parent | 268d0ffa05d97eb9c836e790b9a4a25a9d1d49fd (diff) | |
download | ghdl-890b2fc4abc5717bec33c77829353e2264a3762c.tar.gz ghdl-890b2fc4abc5717bec33c77829353e2264a3762c.tar.bz2 ghdl-890b2fc4abc5717bec33c77829353e2264a3762c.zip |
Update docstring for GHDL parameter of PoSh scripts
-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 |
7 files changed, 7 insertions, 7 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 = "" ) |