Changeset cb15b49c in mainline for tools/toolchain.sh
- Timestamp:
- 2018-12-03T20:38:54Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 59564e6
- Parents:
- 4aba581
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r4aba581 rcb15b49c 61 61 echo "Syntax:" 62 62 echo " $0 [--no-install] [--non-helenos-target] <platform>" 63 echo " $0 --test-version [<platform>]" 63 64 echo 64 65 echo "Possible target platforms are:" … … 100 101 echo "Start testing the version of the installed software" 101 102 echo 102 103 PLATFORMS=("amd64" "arm32" "ia32" "ia64" "mips32" "mips32eb" "ppc32" "riscv64" "sparc64") 103 104 if [ -z "$1" ] || [ "$1" == "all" ] ; then 105 PLATFORMS=("amd64" "arm32" "ia32" "ia64" "mips32" "mips32eb" "ppc32" "riscv64" "sparc64") 106 else 107 PLATFORMS=("$1") 108 fi 109 104 110 105 111 if [ -z "${CROSS_PREFIX}" ] ; then … … 465 471 while [ "$#" -gt 1 ] ; do 466 472 case "$1" in 473 --test-version) 474 test_version "$2" 475 exit 476 ;; 467 477 --no-install) 468 478 REAL_INSTALL=false … … 484 494 485 495 case "$1" in 486 "--test-version")496 --test-version) 487 497 test_version 488 498 ;;
Note:
See TracChangeset
for help on using the changeset viewer.