TARGET_linux-arm.mk revision 077007e872413ed2bf30642515a400f1b4238b25
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 build/core/combo/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_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-linux-androideabi-4.6
47TARGET_TOOLS_PREFIX := $(TARGET_TOOLCHAIN_ROOT)/bin/arm-linux-androideabi-
48endif
49
50# Only define these if there's actually a gcc in there.
51# The gcc toolchain does not exists for windows/cygwin. In this case, do not reference it.
52ifneq ($(wildcard $(TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX)),)
53    TARGET_CC := $(TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX)
54    TARGET_CXX := $(TARGET_TOOLS_PREFIX)g++$(HOST_EXECUTABLE_SUFFIX)
55    TARGET_AR := $(TARGET_TOOLS_PREFIX)ar$(HOST_EXECUTABLE_SUFFIX)
56    TARGET_OBJCOPY := $(TARGET_TOOLS_PREFIX)objcopy$(HOST_EXECUTABLE_SUFFIX)
57    TARGET_LD := $(TARGET_TOOLS_PREFIX)ld$(HOST_EXECUTABLE_SUFFIX)
58    TARGET_STRIP := $(TARGET_TOOLS_PREFIX)strip$(HOST_EXECUTABLE_SUFFIX)
59    ifeq ($(TARGET_BUILD_VARIANT),user)
60        TARGET_STRIP_COMMAND = $(TARGET_STRIP) --strip-all $< -o $@
61    else
62        TARGET_STRIP_COMMAND = $(TARGET_STRIP) --strip-all $< -o $@ && \
63            $(TARGET_OBJCOPY) --add-gnu-debuglink=$< $@
64    endif
65endif
66
67TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
68
69TARGET_arm_CFLAGS :=    -O2 \
70                        -fomit-frame-pointer \
71                        -fstrict-aliasing    \
72                        -funswitch-loops
73
74# Modules can choose to compile some source as thumb. As
75# non-thumb enabled targets are supported, this is treated
76# as a 'hint'. If thumb is not enabled, these files are just
77# compiled as ARM.
78ifeq ($(ARCH_ARM_HAVE_THUMB_SUPPORT),true)
79TARGET_thumb_CFLAGS :=  -mthumb \
80                        -Os \
81                        -fomit-frame-pointer \
82                        -fno-strict-aliasing
83else
84TARGET_thumb_CFLAGS := $(TARGET_arm_CFLAGS)
85endif
86
87# Set FORCE_ARM_DEBUGGING to "true" in your buildspec.mk
88# or in your environment to force a full arm build, even for
89# files that are normally built as thumb; this can make
90# gdb debugging easier.  Don't forget to do a clean build.
91#
92# NOTE: if you try to build a -O0 build with thumb, several
93# of the libraries (libpv, libwebcore, libkjs) need to be built
94# with -mlong-calls.  When built at -O0, those libraries are
95# too big for a thumb "BL <label>" to go from one end to the other.
96ifeq ($(FORCE_ARM_DEBUGGING),true)
97  TARGET_arm_CFLAGS += -fno-omit-frame-pointer -fno-strict-aliasing
98  TARGET_thumb_CFLAGS += -marm -fno-omit-frame-pointer
99endif
100
101TARGET_GLOBAL_CFLAGS += \
102			-msoft-float -fpic -fPIE \
103			-ffunction-sections \
104			-fdata-sections \
105			-funwind-tables \
106			-fstack-protector \
107			-Wa,--noexecstack \
108			-Werror=format-security \
109			-D_FORTIFY_SOURCE=1 \
110			-fno-short-enums \
111			$(arch_variant_cflags)
112
113android_config_h := $(call select-android-config-h,linux-arm)
114TARGET_ANDROID_CONFIG_CFLAGS := -include $(android_config_h) -I $(dir $(android_config_h))
115TARGET_GLOBAL_CFLAGS += $(TARGET_ANDROID_CONFIG_CFLAGS)
116
117# This warning causes dalvik not to build with gcc 4.6.x and -Werror.
118# We cannot turn it off blindly since the option is not available
119# in gcc-4.4.x.  We also want to disable sincos optimization globally
120# by turning off the builtin sin function.
121ifneq ($(filter 4.6 4.6.%, $(shell $(TARGET_CC) --version)),)
122TARGET_GLOBAL_CFLAGS += -Wno-unused-but-set-variable -fno-builtin-sin \
123			-fno-strict-volatile-bitfields
124endif
125
126# This is to avoid the dreaded warning compiler message:
127#   note: the mangling of 'va_list' has changed in GCC 4.4
128#
129# The fact that the mangling changed does not affect the NDK ABI
130# very fortunately (since none of the exposed APIs used va_list
131# in their exported C++ functions). Also, GCC 4.5 has already
132# removed the warning from the compiler.
133#
134TARGET_GLOBAL_CFLAGS += -Wno-psabi
135
136TARGET_GLOBAL_LDFLAGS += \
137			-Wl,-z,noexecstack \
138			-Wl,-z,relro \
139			-Wl,-z,now \
140			-Wl,--warn-shared-textrel \
141			-Wl,--fatal-warnings \
142			-Wl,--icf=safe \
143			$(arch_variant_ldflags)
144
145# We only need thumb interworking in cases where thumb support
146# is available in the architecture, and just to be sure, (and
147# since sometimes thumb-interwork appears to be default), we
148# specifically disable when thumb support is unavailable.
149ifeq ($(ARCH_ARM_HAVE_THUMB_SUPPORT),true)
150TARGET_GLOBAL_CFLAGS += -mthumb-interwork
151else
152TARGET_GLOBAL_CFLAGS += -mno-thumb-interwork
153endif
154
155TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
156
157# More flags/options can be added here
158TARGET_RELEASE_CFLAGS := \
159			-DNDEBUG \
160			-g \
161			-Wstrict-aliasing=2 \
162			-fgcse-after-reload \
163			-frerun-cse-after-loop \
164			-frename-registers
165
166libc_root := bionic/libc
167libm_root := bionic/libm
168libstdc++_root := bionic/libstdc++
169libthread_db_root := bionic/libthread_db
170
171
172## on some hosts, the target cross-compiler is not available so do not run this command
173ifneq ($(wildcard $(TARGET_CC)),)
174# We compile with the global cflags to ensure that
175# any flags which affect libgcc are correctly taken
176# into account.
177TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) -print-libgcc-file-name)
178endif
179
180# Define FDO (Feedback Directed Optimization) options.
181
182TARGET_FDO_CFLAGS:=
183TARGET_FDO_LIB:=
184
185target_libgcov := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
186        -print-file-name=libgcov.a)
187ifneq ($(strip $(BUILD_FDO_INSTRUMENT)),)
188  # Set BUILD_FDO_INSTRUMENT=true to turn on FDO instrumentation.
189  # The profile will be generated on /data/local/tmp/profile on the device.
190  TARGET_FDO_CFLAGS := -fprofile-generate=/data/local/tmp/profile -DANDROID_FDO
191  TARGET_FDO_LIB := $(target_libgcov)
192else
193  # If BUILD_FDO_INSTRUMENT is turned off, then consider doing the FDO optimizations.
194  # Set TARGET_FDO_PROFILE_PATH to set a custom profile directory for your build.
195  ifeq ($(strip $(TARGET_FDO_PROFILE_PATH)),)
196    TARGET_FDO_PROFILE_PATH := fdo/profiles/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT)
197  else
198    ifeq ($(strip $(wildcard $(TARGET_FDO_PROFILE_PATH))),)
199      $(warning Custom TARGET_FDO_PROFILE_PATH supplied, but directory does not exist. Turn off FDO.)
200    endif
201  endif
202
203  # If the FDO profile directory can't be found, then FDO is off.
204  ifneq ($(strip $(wildcard $(TARGET_FDO_PROFILE_PATH))),)
205    TARGET_FDO_CFLAGS := -fprofile-use=$(TARGET_FDO_PROFILE_PATH) -DANDROID_FDO
206    TARGET_FDO_LIB := $(target_libgcov)
207  endif
208endif
209
210
211# unless CUSTOM_KERNEL_HEADERS is defined, we're going to use
212# symlinks located in out/ to point to the appropriate kernel
213# headers. see 'config/kernel_headers.make' for more details
214#
215ifneq ($(CUSTOM_KERNEL_HEADERS),)
216    KERNEL_HEADERS_COMMON := $(CUSTOM_KERNEL_HEADERS)
217    KERNEL_HEADERS_ARCH   := $(CUSTOM_KERNEL_HEADERS)
218else
219    KERNEL_HEADERS_COMMON := $(libc_root)/kernel/common
220    KERNEL_HEADERS_ARCH   := $(libc_root)/kernel/arch-$(TARGET_ARCH)
221endif
222KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
223
224TARGET_C_INCLUDES := \
225	$(libc_root)/arch-arm/include \
226	$(libc_root)/include \
227	$(libstdc++_root)/include \
228	$(KERNEL_HEADERS) \
229	$(libm_root)/include \
230	$(libm_root)/include/arm \
231	$(libthread_db_root)/include
232
233TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
234TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
235TARGET_CRTEND_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
236
237TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
238TARGET_CRTEND_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
239
240TARGET_STRIP_MODULE:=true
241
242TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
243
244TARGET_CUSTOM_LD_COMMAND := true
245
246# Enable the Dalvik JIT compiler if not already specified.
247ifeq ($(strip $(WITH_JIT)),)
248    WITH_JIT := true
249endif
250
251define transform-o-to-shared-lib-inner
252$(hide) $(PRIVATE_CXX) \
253	-nostdlib -Wl,-soname,$(notdir $@) \
254	-Wl,--gc-sections \
255	-Wl,-shared,-Bsymbolic \
256	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
257	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_SO_O)) \
258	$(PRIVATE_ALL_OBJECTS) \
259	-Wl,--whole-archive \
260	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
261	-Wl,--no-whole-archive \
262	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
263	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
264	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
265	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
266	-o $@ \
267	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
268	$(PRIVATE_LDFLAGS) \
269	$(PRIVATE_TARGET_FDO_LIB) \
270	$(PRIVATE_TARGET_LIBGCC) \
271	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_SO_O))
272endef
273
274define transform-o-to-executable-inner
275$(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -fPIE -pie \
276	-Wl,-dynamic-linker,/system/bin/linker \
277	-Wl,--gc-sections \
278	-Wl,-z,nocopyreloc \
279	-o $@ \
280	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
281	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
282	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
283	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_DYNAMIC_O)) \
284	$(PRIVATE_ALL_OBJECTS) \
285	-Wl,--whole-archive \
286	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
287	-Wl,--no-whole-archive \
288	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
289	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
290	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
291	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
292	$(PRIVATE_LDFLAGS) \
293	$(PRIVATE_TARGET_FDO_LIB) \
294	$(PRIVATE_TARGET_LIBGCC) \
295	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
296endef
297
298define transform-o-to-static-executable-inner
299$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic \
300	-Wl,--gc-sections \
301	-o $@ \
302	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
303	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_STATIC_O)) \
304	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
305	$(PRIVATE_LDFLAGS) \
306	$(PRIVATE_ALL_OBJECTS) \
307	-Wl,--whole-archive \
308	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
309	-Wl,--no-whole-archive \
310	$(call normalize-target-libraries,$(filter-out %libc_nomalloc.a,$(filter-out %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES)))) \
311	-Wl,--start-group \
312	$(call normalize-target-libraries,$(filter %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
313	$(call normalize-target-libraries,$(filter %libc_nomalloc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
314	$(PRIVATE_TARGET_FDO_LIB) \
315	$(PRIVATE_TARGET_LIBGCC) \
316	-Wl,--end-group \
317	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
318endef
319