1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/legacy/script/toolchain-run
2019-09-12 17:35:55 +02:00

19 lines
490 B
Bash
Executable File

#!/usr/bin/env bash
# script/toolchain-run: Run command with downloaded GNU Arm Embedded toolchain.
#
set -e
readonly TOOLCHAIN_RELATIVE_DIR="vendor/toolchain"
readonly TOOLCHAIN_DIR="$(readlink -f "$(dirname "$0")/../$TOOLCHAIN_RELATIVE_DIR")"
if [ ! -d "$TOOLCHAIN_DIR" ]; then
printf "Could not find toolchain in %s.\n" "$TOOLCHAIN_RELATIVE_DIR" >&2
printf "Run script/toolchain-download to download it.\n" >&2
exit 1
fi
export PATH="$TOOLCHAIN_DIR/bin:$PATH"
exec "$@"