-
Notifications
You must be signed in to change notification settings - Fork 12
/
imports.mak
46 lines (41 loc) · 1.56 KB
/
imports.mak
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
40
41
42
43
44
45
46
#
# Set location of various cgtools
#
# These variables can be set here or on the command line. Paths must not
# have spaces.
#
# The various *_ARMCOMPILER variables, in addition to pointing to
# their respective locations, also serve as "switches" for disabling a build
# using those cgtools. To disable a build using a specific cgtool, either set
# the cgtool's variable to empty or delete/comment-out its definition:
# TICLANG_ARMCOMPILER ?=
# or
# #TICLANG_ARMCOMPILER ?= ...
#
# If a cgtool's *_ARMCOMPILER variable is set (non-empty), various sub-makes
# in the installation will attempt to build with that cgtool. This means
# that if multiple *_ARMCOMPILER cgtool variables are set, the sub-makes
# will build using each non-empty *_ARMCOMPILER cgtool.
#
XDC_INSTALL_DIR ?= /home/username/ti/xdctools_3_62_01_15_core
SYSCONFIG_TOOL ?= /home/username/ti/ccs1230/ccs/utils/sysconfig_1.18.1/sysconfig_cli.sh
CMAKE ?= /home/username/cmake-3.21.3/bin/cmake
PYTHON ?= python3
TICLANG_ARMCOMPILER ?= /home/username/ti/ccs1230/ccs/tools/compiler/ti-cgt-armllvm_3.2.0.LTS-0
GCC_ARMCOMPILER ?= /home/username/arm-none-eabi-gcc/9.2019.q4.major-0
IAR_ARMCOMPILER ?= /home/username/iar9.40.2
# Uncomment this to enable the TFM build
# ENABLE_TFM_BUILD=1
ifeq ("$(SHELL)","sh.exe")
# for Windows/DOS shell
RM = del
RMDIR = -rmdir /S /Q
DEVNULL = NUL
ECHOBLANKLINE = @cmd /c echo.
else
# for Linux-like shells
RM = rm -f
RMDIR = rm -rf
DEVNULL = /dev/null
ECHOBLANKLINE = echo
endif