blob: 1b244350524aa1358aa26831caa08cd2f0b7650e [file] [log] [blame]
Ben Chengdb4fc202013-10-04 16:02:59 -07001#
2# Copyright (C) 2013 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 := armv8
35endif
36
37ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),)
38TARGET_GCC_VERSION := 4.8
39else
40TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP)
41endif
42
Alexey Volkova1779eb2013-12-11 17:18:56 +040043TARGET_IS_64_BIT := true
44
Ben Chengdb4fc202013-10-04 16:02:59 -070045TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT).mk
46ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),)
47$(error Unknown ARM architecture version: $(TARGET_ARCH_VARIANT))
48endif
49
Ben Cheng74a8faf2013-10-29 16:13:30 -070050# TODO: Enable Clang when aarch64 prebuilt is added
51WITHOUT_CLANG := true
52
Ben Chengdb4fc202013-10-04 16:02:59 -070053include $(TARGET_ARCH_SPECIFIC_MAKEFILE)
54
55# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
56ifeq ($(strip $(TARGET_TOOLS_PREFIX)),)
57TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/aarch64/aarch64-linux-android-$(TARGET_GCC_VERSION)
58TARGET_TOOLS_PREFIX := $(TARGET_TOOLCHAIN_ROOT)/bin/aarch64-linux-android-
59endif
60
61TARGET_CC := $(TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX)
62TARGET_CXX := $(TARGET_TOOLS_PREFIX)g++$(HOST_EXECUTABLE_SUFFIX)
63TARGET_AR := $(TARGET_TOOLS_PREFIX)ar$(HOST_EXECUTABLE_SUFFIX)
64TARGET_OBJCOPY := $(TARGET_TOOLS_PREFIX)objcopy$(HOST_EXECUTABLE_SUFFIX)
65TARGET_LD := $(TARGET_TOOLS_PREFIX)ld$(HOST_EXECUTABLE_SUFFIX)
66TARGET_STRIP := $(TARGET_TOOLS_PREFIX)strip$(HOST_EXECUTABLE_SUFFIX)
67ifeq ($(TARGET_BUILD_VARIANT),user)
68 TARGET_STRIP_COMMAND = $(TARGET_STRIP) --strip-all $< -o $@
69else
70 TARGET_STRIP_COMMAND = $(TARGET_STRIP) --strip-all $< -o $@ && \
71 $(TARGET_OBJCOPY) --add-gnu-debuglink=$< $@
72endif
73
74TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
75
76android_config_h := $(call select-android-config-h,linux-aarch64)
77
78TARGET_GLOBAL_CFLAGS += \
79 -fpic -fPIE \
Ben Chengdb4fc202013-10-04 16:02:59 -070080 -ffunction-sections \
81 -fdata-sections \
82 -funwind-tables \
83 -Wa,--noexecstack \
84 -Werror=format-security \
85 -D_FORTIFY_SOURCE=2 \
86 -fno-short-enums \
87 $(arch_variant_cflags) \
88 -include $(android_config_h) \
89 -I $(dir $(android_config_h))
90
Ben Chengcd7b02d2013-12-12 13:07:05 -080091# TODO - remove __ANDROID__ after the next aarch64 toolchain refresh
92TARGET_GLOBAL_CFLAGS += -D__ANDROID__=1
93
Ben Chengdb4fc202013-10-04 16:02:59 -070094TARGET_GLOBAL_CFLAGS += -fno-strict-volatile-bitfields
95
96# This is to avoid the dreaded warning compiler message:
97# note: the mangling of 'va_list' has changed in GCC 4.4
98#
99# The fact that the mangling changed does not affect the NDK ABI
100# very fortunately (since none of the exposed APIs used va_list
101# in their exported C++ functions). Also, GCC 4.5 has already
102# removed the warning from the compiler.
103#
104TARGET_GLOBAL_CFLAGS += -Wno-psabi
105
Ben Cheng74a8faf2013-10-29 16:13:30 -0700106# TODO - temporarily remove "-Wl,-z,relro -Wl,-z,now" as they cause segmentation fault on the
107# v8 foundation model.
Ben Chengdb4fc202013-10-04 16:02:59 -0700108TARGET_GLOBAL_LDFLAGS += \
109 -Wl,-z,noexecstack \
Ben Chengdb4fc202013-10-04 16:02:59 -0700110 -Wl,--warn-shared-textrel \
111 -Wl,--fatal-warnings \
112 $(arch_variant_ldflags)
113
114TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
115
116# More flags/options can be added here
117TARGET_RELEASE_CFLAGS := \
118 -DNDEBUG \
119 -O2 -g \
120 -Wstrict-aliasing=2 \
121 -fgcse-after-reload \
122 -frerun-cse-after-loop \
123 -frename-registers
124
125libc_root := bionic/libc
126libm_root := bionic/libm
127libstdc++_root := bionic/libstdc++
128libthread_db_root := bionic/libthread_db
129
Ben Cheng71c36eb2013-10-28 10:27:58 -0700130TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
131 -print-libgcc-file-name)
Ben Chengdb4fc202013-10-04 16:02:59 -0700132
133# unless CUSTOM_KERNEL_HEADERS is defined, we're going to use
134# symlinks located in out/ to point to the appropriate kernel
135# headers. see 'config/kernel_headers.make' for more details
136#
137ifneq ($(CUSTOM_KERNEL_HEADERS),)
138 KERNEL_HEADERS_COMMON := $(CUSTOM_KERNEL_HEADERS)
139 KERNEL_HEADERS_ARCH := $(CUSTOM_KERNEL_HEADERS)
Ben Cheng74a8faf2013-10-29 16:13:30 -0700140 KERNEL_HEADERS_AUX := $(CUSTOM_KERNEL_HEADERS)
Ben Chengdb4fc202013-10-04 16:02:59 -0700141else
Ben Cheng57973822013-10-16 12:28:38 -0700142 KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
Ben Chenge61dea92013-10-25 09:33:22 -0700143 KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH)
Ben Cheng74a8faf2013-10-29 16:13:30 -0700144 KERNEL_HEADERS_AUX := $(libc_root)/kernel/common
Ben Chengdb4fc202013-10-04 16:02:59 -0700145endif
Ben Cheng74a8faf2013-10-29 16:13:30 -0700146KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH) $(KERNEL_HEADERS_AUX)
Ben Chengdb4fc202013-10-04 16:02:59 -0700147
148TARGET_C_INCLUDES := \
149 $(libc_root)/arch-aarch64/include \
150 $(libc_root)/include \
151 $(libstdc++_root)/include \
152 $(KERNEL_HEADERS) \
153 $(libm_root)/include \
154 $(libm_root)/include/aarch64 \
155 $(libthread_db_root)/include
156
Ben Cheng71c36eb2013-10-28 10:27:58 -0700157TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
158TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
159TARGET_CRTEND_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
Ben Chengdb4fc202013-10-04 16:02:59 -0700160
Ben Cheng71c36eb2013-10-28 10:27:58 -0700161TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
162TARGET_CRTEND_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
Ben Chengdb4fc202013-10-04 16:02:59 -0700163
164TARGET_STRIP_MODULE:=true
165
166TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
167
168TARGET_CUSTOM_LD_COMMAND := true
169
170define transform-o-to-shared-lib-inner
171$(hide) $(PRIVATE_CXX) \
172 -nostdlib -Wl,-soname,$(notdir $@) \
173 -Wl,-shared,-Bsymbolic \
174 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
175 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_SO_O)) \
176 $(PRIVATE_ALL_OBJECTS) \
177 -Wl,--whole-archive \
178 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
179 -Wl,--no-whole-archive \
180 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
181 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
182 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
183 $(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
184 $(PRIVATE_TARGET_FDO_LIB) \
185 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
186 -o $@ \
187 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
188 $(PRIVATE_LDFLAGS) \
189 $(PRIVATE_TARGET_LIBGCC) \
190 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_SO_O))
191endef
192
193define transform-o-to-executable-inner
194$(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -fPIE -pie \
Ben Cheng98b8fdd2013-10-08 14:19:50 -0700195 -Wl,-dynamic-linker,/system/bin/linker64 \
Ben Chengdb4fc202013-10-04 16:02:59 -0700196 -Wl,-z,nocopyreloc \
197 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
198 -Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
199 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_DYNAMIC_O)) \
200 $(PRIVATE_ALL_OBJECTS) \
201 -Wl,--whole-archive \
202 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
203 -Wl,--no-whole-archive \
204 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
205 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
206 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
207 $(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
208 $(PRIVATE_TARGET_FDO_LIB) \
209 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
210 -o $@ \
211 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
212 $(PRIVATE_LDFLAGS) \
213 $(PRIVATE_TARGET_LIBGCC) \
214 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
215endef
216
217define transform-o-to-static-executable-inner
Ben Chenge61dea92013-10-25 09:33:22 -0700218$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic \
Ben Chengdb4fc202013-10-04 16:02:59 -0700219 -o $@ \
220 $(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
221 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_STATIC_O)) \
222 $(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
223 $(PRIVATE_LDFLAGS) \
224 $(PRIVATE_ALL_OBJECTS) \
225 -Wl,--whole-archive \
226 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
227 -Wl,--no-whole-archive \
228 $(call normalize-target-libraries,$(filter-out %libc_nomalloc.a,$(filter-out %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES)))) \
229 -Wl,--start-group \
230 $(call normalize-target-libraries,$(filter %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
231 $(call normalize-target-libraries,$(filter %libc_nomalloc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
232 $(PRIVATE_TARGET_FDO_LIB) \
233 $(PRIVATE_TARGET_LIBGCC) \
234 -Wl,--end-group \
235 $(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
236endef