aboutsummaryrefslogtreecommitdiff
path: root/zephyr-environ.sh
blob: d793386d676dbc5d25e71b4322e36334c7206c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Source this file, don't execute it!

# Zephyr SDK toolchain vars
if [ -f sdk/sdk_version ]; then
    echo "Using bundled install of Zephyr SDK"
    export ZEPHYR_SDK_INSTALL_DIR=$PWD/sdk
else
    echo "Using Zephyr SDK in ~/opt/zephyr-sdk-0.9.1"
    export ZEPHYR_SDK_INSTALL_DIR=~/opt/zephyr-sdk-0.9.1
fi
export ZEPHYR_GCC_VARIANT=zephyr

# Rest of Zephyr vars
. zephyr/zephyr-env.sh