-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-env.sh
30 lines (21 loc) · 841 Bytes
/
build-env.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
#!/bin/bash
# Paths to build dependencies
#
# Here most point to the bundle in TI-RTOS, but most are also available as
# independent distributions (see README.md for links)
XDCTOOLS_PATH="/opt/ti/xdctools/xdctools_3_30_04_52_core"
# Append only if it's not there already
if ! echo $PATH | grep -q $XDCTOOLS_PATH
then
export PATH=$PATH:$XDCTOOLS_PATH
fi
unset XDCPATH
# gnu.targets.*
XDCPATH="$XDCPATH;/opt/ti/tirtos/tirtos_tivac_2_00_01_23/products/bios_6_40_01_15/packages"
# ti.drivers.{gpio,uart}
XDCPATH="$XDCPATH;/opt/ti/tirtos/tirtos_tivac_2_00_01_23/packages"
XDCPATH="$XDCPATH;$HOME/rtml/src/ti/rtsc-platforms"
export XDCPATH
# TivaWare for building eventgenapp for Tiva C (M4F)
TIVAWARE_INSTALLATION_DIR="/opt/ti/tirtos/tirtos_tivac_2_00_01_23/products/TivaWare_C_Series-2.1.0.12573c"
export TIVAWARE_INSTALLATION_DIR