191f3c3deb
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
13 lines
356 B
Bash
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" |