diff options
Diffstat (limited to 'scripts/vendors/compile-uvvm.sh')
-rwxr-xr-x | scripts/vendors/compile-uvvm.sh | 12 |
1 files changed, 6 insertions, 6 deletions
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." |