forked from marceluda/rp_lock-in_pid_h
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.sh
executable file
·39 lines (28 loc) · 1.64 KB
/
settings.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
################################################################################
# setup Xilinx Vivado FPGA tools
################################################################################
. /opt/Xilinx/Vivado/2015.2/settings64.sh
################################################################################
# setup Linaro toolchain
################################################################################
#export TOOLCHAIN_PATH=/opt/linaro/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf
#export TOOLCHAIN_PATH=/opt/linaro/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf/
if [ -d "/opt/linaro/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf" ]; then
export TOOLCHAIN_PATH=/opt/linaro/gcc-linaro-4.9-2014.11-x86_64_arm-linux-gnueabihf/
fi
if [ -d "/opt/linaro/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf" ]; then
export TOOLCHAIN_PATH=/opt/linaro/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf/
fi
export PATH=$PATH:$TOOLCHAIN_PATH/bin
export CROSS_COMPILE=arm-linux-gnueabihf-
################################################################################
# setup Buildroot download cache directory, to avoid downloads
# this path is also used by some other downloads
################################################################################
#export BR2_DL_DIR=$HOME/Workplace/buildroot/dl
export BR2_DL_DIR=dl
################################################################################
# common make procedure, should not be run by this script
################################################################################
#GIT_COMMIT_SHORT=`git rev-parse --short HEAD`
#make REVISION=$GIT_COMMIT_SHORT