aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Byszuk <adrian.byszuk@gmail.com>2021-02-17 15:15:14 +0100
committerGitHub <noreply@github.com>2021-02-17 15:15:14 +0100
commit34a096229ccadf895b2130bafa417e869c437b3c (patch)
treeff5f3bc3adf4020367f9ae2e5e6ee963a64d7c08
parenta45cd97fa291b442002d70ac7e0968a24b0815f9 (diff)
downloadghdl-34a096229ccadf895b2130bafa417e869c437b3c.tar.gz
ghdl-34a096229ccadf895b2130bafa417e869c437b3c.tar.bz2
ghdl-34a096229ccadf895b2130bafa417e869c437b3c.zip
vendors: support deprecated param names (#1653)
Co-authored-by: Adrian Byszuk <adrian.byszuk@cern.ch>
-rwxr-xr-xscripts/vendors/compile-altera.sh10
-rwxr-xr-xscripts/vendors/compile-intel.sh10
-rwxr-xr-xscripts/vendors/compile-lattice.sh10
-rwxr-xr-xscripts/vendors/compile-osvvm.sh10
-rwxr-xr-xscripts/vendors/compile-uvvm.sh12
-rwxr-xr-xscripts/vendors/compile-xilinx-ise.sh10
-rwxr-xr-xscripts/vendors/compile-xilinx-vivado.sh10
7 files changed, 36 insertions, 36 deletions
diff --git a/scripts/vendors/compile-altera.sh b/scripts/vendors/compile-altera.sh
index 73aaeb164..06269071e 100755
--- a/scripts/vendors/compile-altera.sh
+++ b/scripts/vendors/compile-altera.sh
@@ -126,11 +126,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -179,9 +179,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. altera"
- echo " --source <Path to Quartus>Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. altera"
+ echo " --source <Path to Quartus> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-intel.sh b/scripts/vendors/compile-intel.sh
index 79686f8b5..c363cc249 100755
--- a/scripts/vendors/compile-intel.sh
+++ b/scripts/vendors/compile-intel.sh
@@ -126,11 +126,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -179,9 +179,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. intel"
- echo " --source <Path to Quartus>Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. intel"
+ echo " --source <Path to Quartus> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-lattice.sh b/scripts/vendors/compile-lattice.sh
index a7cdfd7c3..2c42e2200 100755
--- a/scripts/vendors/compile-lattice.sh
+++ b/scripts/vendors/compile-lattice.sh
@@ -100,11 +100,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -163,9 +163,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. lattice"
- echo " --source <Path to Diamond>Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. lattice"
+ echo " --source <Path to Diamond> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-osvvm.sh b/scripts/vendors/compile-osvvm.sh
index dbdf7c70b..34b5f2dd4 100755
--- a/scripts/vendors/compile-osvvm.sh
+++ b/scripts/vendors/compile-osvvm.sh
@@ -89,11 +89,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -138,9 +138,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. osvvm"
- echo " --source <Path to OSVVM> Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. osvvm"
+ echo " --source <Path to OSVVM> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-uvvm.sh b/scripts/vendors/compile-uvvm.sh
index e7a85a459..12db0ec28 100755
--- a/scripts/vendors/compile-uvvm.sh
+++ b/scripts/vendors/compile-uvvm.sh
@@ -194,11 +194,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -260,12 +260,12 @@ if [[ $COMMAND -le 1 ]]; then
echo " --uvvm-vip-uart Universal Asynchronous Receiver Transmitter (UART)"
echo ""
echo "Library compile options:"
- echo " -H --halt-on-error Halt on error(s)."
+ echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. uvvm_util"
- echo " --source <Path to UVVM> Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. uvvm_util"
+ echo " --source <Path to UVVM> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-xilinx-ise.sh b/scripts/vendors/compile-xilinx-ise.sh
index 5ac581b28..2e3cc3355 100755
--- a/scripts/vendors/compile-xilinx-ise.sh
+++ b/scripts/vendors/compile-xilinx-ise.sh
@@ -121,11 +121,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ -src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ -out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -173,9 +173,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. ise"
- echo " --source <Path to ISE> Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. ise"
+ echo " --source <Path to ISE> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."
diff --git a/scripts/vendors/compile-xilinx-vivado.sh b/scripts/vendors/compile-xilinx-vivado.sh
index 203a5c35f..050f0ab4a 100755
--- a/scripts/vendors/compile-xilinx-vivado.sh
+++ b/scripts/vendors/compile-xilinx-vivado.sh
@@ -116,11 +116,11 @@ while [[ $# -gt 0 ]]; do
GHDL="$2" # overwrite a potentially existing GHDL environment variable
shift # skip argument
;;
- --source)
+ --src|--source)
SrcDir="$2"
shift # skip argument
;;
- --output)
+ --out|--output)
DestDir="$2"
shift # skip argument
;;
@@ -167,9 +167,9 @@ if [[ $COMMAND -le 1 ]]; then
echo " -H --halt-on-error Halt on error(s)."
echo ""
echo "Advanced options:"
- echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
- echo " --output <dir name> Name of the output directory, e.g. vivado"
- echo " --source <Path to Vivado> Path to the sources."
+ echo " --ghdl <GHDL binary> Path to GHDL's executable, e.g. /usr/local/bin/ghdl"
+ echo " --output <dir name> Name of the output directory, e.g. vivado"
+ echo " --source <Path to Vivado> Path to the sources."
echo ""
echo "Verbosity:"
echo " -v --verbose Print verbose messages."