mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
19 lines
490 B
Bash
Executable File
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 "$@"
|