aboutsummaryrefslogtreecommitdiff
path: root/zephyr-environ.sh
blob: ae01fb05c63038a14c2f9e1d0d510b5cefdbab49 (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"
    export ZEPHYR_SDK_INSTALL_DIR=~/opt/zephyr-sdk-0.9
fi
export ZEPHYR_GCC_VARIANT=zephyr

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