-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathconfig.armlinux
executable file
·46 lines (45 loc) · 1.15 KB
/
config.armlinux
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
# Configure you cross compiling parameters here.
# If your arm-linux-gcc is installed by "apt-get", it would be:
#
CROSS_COMPILE_DIR= /usr
CROSS_COMPILE= $(CROSS_COMPILE_DIR)/bin/arm-linux-gnueabi-
#
# CROSS_COMPILE_DIR?=
# CROSS_COMPILE?=
COMPILE_OPTS = $(INCLUDES) -I. -O2
C = c
C_COMPILER = $(CROSS_COMPILE)gcc
C_FLAGS = $(COMPILE_OPTS)
CPP = cpp
CPLUSPLUS_COMPILER = $(CROSS_COMPILE)g++
CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall
OBJ = o
LINK = $(CROSS_COMPILE)g++ -o
LINK_OPTS = -lpthread
CONSOLE_LINK_OPTS = $(LINK_OPTS)
LIBRARY_LINK = ar cr
DYN_LIBRARY_LINK = $(CPLUSPLUS_COMPILER)
STC_LIBRARY_LINK_OPTS =
DYN_LIBRARY_LINK_OPTS = -fPIC -shared
LIB_SUFFIX = a
DYN_LIB_SUFFIX = so
LIBS_FOR_CONSOLE_APPLICATION =
LIBS_FOR_GUI_APPLICATION =
EXE =
###############################
# For crosscompiling to set
# RTP endian
# LITTLE_ENDIAN as default
###############################
# RTP_ENDIAN = BIG_ENDIAN
# OR
# RTP_ENDIAN = LITTLE_ENDIAN
RTP_ENDIAN = LITTLE_ENDIAN
###############################
# JThread enable/disable
# DISABLE as default
###############################
# RTP_JTHREAD = ENABLE
# OR
# RTP_JTHREAD = DISABLE
RTP_JTHREAD = DISABLE