TARGET_linux-arm.mk revision 703e7c6d50a5bddf0fb057a1a26618e2f7138c31
1#
2# Copyright (C) 2006 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# Configuration for Linux on ARM.
18# Included by combo/select.mk
19
20# You can set TARGET_ARCH_VARIANT to use an arch version other
21# than ARMv5TE. Each value should correspond to a file named
22# $(BUILD_COMBOS)/arch/<name>.mk which must contain
23# makefile variable definitions similar to the preprocessor
24# defines in system/core/include/arch/<combo>/AndroidConfig.h. Their
25# purpose is to allow module Android.mk files to selectively compile
26# different versions of code based upon the funtionality and
27# instructions available in a given architecture version.
28#
29# The blocks also define specific arch_variant_cflags, which
30# include defines, and compiler settings for the given architecture
31# version.
32#
33ifeq ($(strip $(TARGET_ARCH_VARIANT)),)
34TARGET_ARCH_VARIANT := armv5te
35endif
36
37TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT).mk
38ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),)
39$(error Unknown ARM architecture version: $(TARGET_ARCH_VARIANT))
40endif
41
42include $(TARGET_ARCH_SPECIFIC_MAKEFILE)
43
44# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
45ifeq ($(strip $(TARGET_TOOLS_PREFIX)),)
46TARGET_TOOLS_PREFIX := \
47	prebuilt/$(HOST_PREBUILT_TAG)/toolchain/arm-linux-androideabi-4.4.x/bin/arm-linux-androideabi-
48endif
49
50TARGET_CC := $(TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX)
51TARGET_CXX := $(TARGET_TOOLS_PREFIX)g++$(HOST_EXECUTABLE_SUFFIX)
52TARGET_AR := $(TARGET_TOOLS_PREFIX)ar$(HOST_EXECUTABLE_SUFFIX)
53TARGET_OBJCOPY := $(TARGET_TOOLS_PREFIX)objcopy$(HOST_EXECUTABLE_SUFFIX)
54TARGET_LD := $(TARGET_TOOLS_PREFIX)ld$(HOST_EXECUTABLE_SUFFIX)
55TARGET_STRIP := $(HOST_OUT_EXECUTABLES)/soslim$(HOST_EXECUTABLE_SUFFIX)
56TARGET_STRIP_COMMAND = $(TARGET_STRIP) --strip --shady --quiet $< --outfile $@
57
58TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
59
60TARGET_arm_CFLAGS :=    -O2 \
61                        -fomit-frame-pointer \
62                        -fstrict-aliasing    \
63                        -funswitch-loops
64
65# Modules can choose to compile some source as thumb. As
66# non-thumb enabled targets are supported, this is treated
67# as a 'hint'. If thumb is not enabled, these files are just
68# compiled as ARM.
69ifeq ($(ARCH_ARM_HAVE_THUMB_SUPPORT),true)
70TARGET_thumb_CFLAGS :=  -mthumb \
71                        -Os \
72                        -fomit-frame-pointer \
73                        -fno-strict-aliasing
74else
75TARGET_thumb_CFLAGS := $(TARGET_arm_CFLAGS)
76endif
77
78# Set FORCE_ARM_DEBUGGING to "true" in your buildspec.mk
79# or in your environment to force a full arm build, even for
80# files that are normally built as thumb; this can make
81# gdb debugging easier.  Don't forget to do a clean build.
82#
83# NOTE: if you try to build a -O0 build with thumb, several
84# of the libraries (libpv, libwebcore, libkjs) need to be built
85# with -mlong-calls.  When built at -O0, those libraries are
86# too big for a thumb "BL <label>" to go from one end to the other.
87ifeq ($(FORCE_ARM_DEBUGGING),true)
88  TARGET_arm_CFLAGS += -fno-omit-frame-pointer -fno-strict-aliasing
89  TARGET_thumb_CFLAGS += -marm -fno-omit-frame-pointer
90endif
91
92android_config_h := $(call select-android-config-h,linux-arm)
93arch_include_dir := $(dir $(android_config_h))
94
95TARGET_GLOBAL_CFLAGS += \
96			-msoft-float -fpic \
97			-ffunction-sections \
98			-fdata-sections \
99			-funwind-tables \
100			-fstack-protector \
101			-Wa,--noexecstack \
102			-Werror=format-security \
103			-fno-short-enums \
104			$(arch_variant_cflags) \
105			-include $(android_config_h) \
106			-I $(arch_include_dir)
107
108# This is to avoid the dreaded warning compiler message:
109#   note: the mangling of 'va_list' has changed in GCC 4.4
110#
111# The fact that the mangling changed does not affect the NDK ABI
112# very fortunately (since none of the exposed APIs used va_list
113# in their exported C++ functions). Also, GCC 4.5 has already
114# removed the warning from the compiler.
115#
116TARGET_GLOBAL_CFLAGS += -Wno-psabi
117
118TARGET_GLOBAL_LDFLAGS += \
119			-Wl,-z,noexecstack \
120			-Wl,--icf=safe \
121			$(arch_variant_ldflags)
122
123# We only need thumb interworking in cases where thumb support
124# is available in the architecture, and just to be sure, (and
125# since sometimes thumb-interwork appears to be default), we
126# specifically disable when thumb support is unavailable.
127ifeq ($(ARCH_ARM_HAVE_THUMB_SUPPORT),true)
128TARGET_GLOBAL_CFLAGS +=	-mthumb-interwork
129else
130TARGET_GLOBAL_CFLAGS +=	-mno-thumb-interwork
131endif
132
133TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
134
135# More flags/options can be added here
136ifeq ($(NEED_WORKAROUND_CORTEX_A9_745320),true)
137TARGET_GLOBAL_CFLAGS += -DWORKAROUND_CORTEX_A9_745320
138endif
139
140TARGET_RELEASE_CFLAGS := \
141			-DNDEBUG \
142			-g \
143			-Wstrict-aliasing=2 \
144			-fgcse-after-reload \
145			-frerun-cse-after-loop \
146			-frename-registers
147
148libc_root := bionic/libc
149libm_root := bionic/libm
150libstdc++_root := bionic/libstdc++
151libthread_db_root := bionic/libthread_db
152
153
154## on some hosts, the target cross-compiler is not available so do not run this command
155ifneq ($(wildcard $(TARGET_CC)),)
156# We compile with the global cflags to ensure that
157# any flags which affect libgcc are correctly taken
158# into account.
159TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) -print-libgcc-file-name)
160endif
161
162# Define FDO (Feedback Directed Optimization) options.
163
164TARGET_FDO_CFLAGS:=
165TARGET_FDO_LIB:=
166
167target_libgcov := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
168        --print-file-name=libgcov.a)
169ifneq ($(strip $(BUILD_FDO_INSTRUMENT)),)
170  # Set BUILD_FDO_INSTRUMENT=true to turn on FDO instrumentation.
171  # The profile will be generated on /data/local/tmp/profile on the device.
172  TARGET_FDO_CFLAGS := -fprofile-generate=/data/local/tmp/profile -DANDROID_FDO
173  TARGET_FDO_LIB := $(target_libgcov)
174else
175  # If BUILD_FDO_INSTRUMENT is turned off, then consider doing the FDO optimizations.
176  # Set TARGET_FDO_PROFILE_PATH to set a custom profile directory for your build.
177  ifeq ($(strip $(TARGET_FDO_PROFILE_PATH)),)
178    TARGET_FDO_PROFILE_PATH := fdo/profiles/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT)
179  else
180    ifeq ($(strip $(wildcard $(TARGET_FDO_PROFILE_PATH))),)
181      $(warning Custom TARGET_FDO_PROFILE_PATH supplied, but directory does not exist. Turn off FDO.)
182    endif
183  endif
184
185  # If the FDO profile directory can't be found, then FDO is off.
186  ifneq ($(strip $(wildcard $(TARGET_FDO_PROFILE_PATH))),)
187    TARGET_FDO_CFLAGS := -fprofile-use=$(TARGET_FDO_PROFILE_PATH) -DANDROID_FDO
188    TARGET_FDO_LIB := $(target_libgcov)
189  endif
190endif
191
192
193# unless CUSTOM_KERNEL_HEADERS is defined, we're going to use
194# symlinks located in out/ to point to the appropriate kernel
195# headers. see 'config/kernel_headers.make' for more details
196#
197ifneq ($(CUSTOM_KERNEL_HEADERS),)
198    KERNEL_HEADERS_COMMON := $(CUSTOM_KERNEL_HEADERS)
199    KERNEL_HEADERS_ARCH   := $(CUSTOM_KERNEL_HEADERS)
200else
201    KERNEL_HEADERS_COMMON := $(libc_root)/kernel/common
202    KERNEL_HEADERS_ARCH   := $(libc_root)/kernel/arch-$(TARGET_ARCH)
203endif
204KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
205
206TARGET_C_INCLUDES := \
207	$(libc_root)/arch-arm/include \
208	$(libc_root)/include \
209	$(libstdc++_root)/include \
210	$(KERNEL_HEADERS) \
211	$(libm_root)/include \
212	$(libm_root)/include/arm \
213	$(libthread_db_root)/include
214
215TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_static.o
216TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_dynamic.o
217TARGET_CRTEND_O := $(TARGET_OUT_STATIC_LIBRARIES)/crtend_android.o
218
219TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_STATIC_LIBRARIES)/crtbegin_so.o
220TARGET_CRTEND_SO_O := $(TARGET_OUT_STATIC_LIBRARIES)/crtend_so.o
221
222TARGET_STRIP_MODULE:=true
223
224TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
225
226TARGET_CUSTOM_LD_COMMAND := true
227
228# Enable the Dalvik JIT compiler if not already specified.
229ifeq ($(strip $(WITH_JIT)),)
230    WITH_JIT := true
231endif
232
233define transform-o-to-shared-lib-inner
234$(hide) $(PRIVATE_CXX) \
235	-nostdlib -Wl,-soname,$(notdir $@) -Wl,-T,$(BUILD_SYSTEM)/armelf.xsc \
236	-Wl,--gc-sections \
237	-Wl,-shared,-Bsymbolic \
238	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
239	$(PRIVATE_ALL_OBJECTS) \
240	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_SO_O)) \
241	-Wl,--whole-archive \
242	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
243	-Wl,--no-whole-archive \
244	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
245	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
246	-o $@ \
247	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
248	$(PRIVATE_LDFLAGS) \
249	$(PRIVATE_TARGET_FDO_LIB) \
250	$(PRIVATE_TARGET_LIBGCC) \
251	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_SO_O))
252endef
253
254define transform-o-to-executable-inner
255$(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -Wl,-T,$(BUILD_SYSTEM)/armelf.x \
256	-Wl,-dynamic-linker,/system/bin/linker \
257    -Wl,--gc-sections \
258	-Wl,-z,nocopyreloc \
259	-o $@ \
260	$(TARGET_GLOBAL_LD_DIRS) \
261	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
262	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
263	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(TARGET_CRTBEGIN_DYNAMIC_O)) \
264	$(PRIVATE_ALL_OBJECTS) \
265	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
266	$(TARGET_GLOBAL_LDFLAGS) \
267	$(PRIVATE_LDFLAGS) \
268	$(TARGET_FDO_LIB) \
269	$(TARGET_LIBGCC) \
270	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(TARGET_CRTEND_O))
271endef
272
273define transform-o-to-static-executable-inner
274$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic -Wl,-T,$(BUILD_SYSTEM)/armelf.x \
275    -Wl,--gc-sections \
276	-o $@ \
277	$(TARGET_GLOBAL_LD_DIRS) \
278	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(TARGET_CRTBEGIN_STATIC_O)) \
279	$(TARGET_GLOBAL_LDFLAGS) \
280	$(PRIVATE_LDFLAGS) \
281	$(PRIVATE_ALL_OBJECTS) \
282	$(call normalize-target-libraries,$(filter-out %libc_nomalloc.a,$(filter-out %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES)))) \
283	-Wl,--start-group \
284	$(call normalize-target-libraries,$(filter %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
285	$(call normalize-target-libraries,$(filter %libc_nomalloc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
286	$(TARGET_FDO_LIB) \
287	$(TARGET_LIBGCC) \
288	-Wl,--end-group \
289	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(TARGET_CRTEND_O))
290endef
291