eive-obsw/cmake/scripts/egse/egse_path_helper_win.sh
Jakob Meier 191f3c3deb
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
moved toolchain path print out
2022-02-07 09:47:12 +01:00

13 lines
356 B
Bash

#!/bin/sh
# Script to set path to raspberry pi toolchain
# Run script with: source egse_path_helper_win.sh
TOOLCHAIN_PATH="/c/SysGCC/raspberry/bin"
if [ $# -eq 1 ];then
export PATH=$PATH:"$1"
else
export PATH=$PATH:$TOOLCHAIN_PATH
fi
echo "Path of toolchain set to $TOOLCHAIN_PATH"
export CROSS_COMPILE="arm-linux-gnueabihf"
export RASPBERRY_VERSION="4"