-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakedefs.EXAMPLE
27 lines (22 loc) · 1021 Bytes
/
Makedefs.EXAMPLE
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
# set the plaform to arm-qemu, arm-bbb, etc.
PLATFORM=arm-qemu
# COMPILER_ROOT and LIBGCC_LOC are for the cross compiler
# CONF_LFLAGS is for the config program in $XINU_HOME/config
# Uncomment the appropriate variables for your environment
# and comment or delete the other ones.
# For the Linux VM
COMPILER_ROOT = /usr/bin/arm-none-eabi-
LIBGCC_LOC = /usr/lib/gcc/arm-none-eabi/5.4.1
CONF_LFLAGS = -lfl
# For SoIC Linux machines
#COMPILER_ROOT = /l/arm2/devtools/bin/arm-none-eabi-
#LIBGCC_LOC = /l/arm2/devtools/lib/gcc/arm-none-eabi/4.8.4
#CONF_LFLAGS = -lfl
# For Macports on macOS
#COMPILER_ROOT = /opt/local/bin/arm-none-eabi-
#LIBGCC_LOC = /opt/local/lib/gcc/arm-none-eabi/5.1.0/
#CONF_LFLAGS = -L/opt/local/lib -lfl
# For Homebrew on macOS
#COMPILER_ROOT = /usr/local/Cellar/gcc-arm-none-eabi/20150925/bin/arm-none-eabi-
#LIBGCC_LOC = /usr/local/Cellar/gcc-arm-none-eabi/20150925/lib/gcc/arm-none-eabi/4.9.3
#CONF_LFLAGS = -L/usr/local/opt/flex/lib -lfl