TARGET_linux-arm64.mk revision 2f8dcdd96114274d9c689caebd546d01176e3c6b
1#
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
43TARGET_IS_64_BIT := true
44
45TARGET_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
50# TODO: Enable Clang when aarch64 prebuilt is added
51WITHOUT_CLANG := true
52
53include $(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 = $(PRIVATE_STRIP) --strip-all $< -o $@
69else
70    TARGET_STRIP_COMMAND = $(PRIVATE_STRIP) --strip-all $< -o $@ && \
71        $(PRIVATE_OBJCOPY) --add-gnu-debuglink=$< $@
72endif
73
74TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
75
76TARGET_GLOBAL_CFLAGS += \
77    -fno-strict-aliasing \
78
79android_config_h := $(call select-android-config-h,linux-arm64)
80
81TARGET_GLOBAL_CFLAGS += \
82			-fpic -fPIE \
83			-ffunction-sections \
84			-fdata-sections \
85			-funwind-tables \
86			-Wa,--noexecstack \
87			-Werror=format-security \
88			-D_FORTIFY_SOURCE=2 \
89			-fno-short-enums \
90			$(arch_variant_cflags) \
91			-include $(android_config_h) \
92			-I $(dir $(android_config_h))
93
94# TODO - remove __ANDROID__ after the next aarch64 toolchain refresh
95TARGET_GLOBAL_CFLAGS += -D__ANDROID__=1
96
97TARGET_GLOBAL_CFLAGS += -fno-strict-volatile-bitfields
98
99# This is to avoid the dreaded warning compiler message:
100#   note: the mangling of 'va_list' has changed in GCC 4.4
101#
102# The fact that the mangling changed does not affect the NDK ABI
103# very fortunately (since none of the exposed APIs used va_list
104# in their exported C++ functions). Also, GCC 4.5 has already
105# removed the warning from the compiler.
106#
107TARGET_GLOBAL_CFLAGS += -Wno-psabi
108
109# TODO - temporarily remove "-Wl,-z,relro -Wl,-z,now" as they cause segmentation fault on the
110# v8 foundation model.
111TARGET_GLOBAL_LDFLAGS += \
112			-Wl,-z,noexecstack \
113			-Wl,--warn-shared-textrel \
114			-Wl,--fatal-warnings \
115			$(arch_variant_ldflags)
116
117TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
118
119# More flags/options can be added here
120TARGET_RELEASE_CFLAGS := \
121			-DNDEBUG \
122			-O2 -g \
123			-Wstrict-aliasing=2 \
124			-fgcse-after-reload \
125			-frerun-cse-after-loop \
126			-frename-registers
127
128libc_root := bionic/libc
129libm_root := bionic/libm
130libstdc++_root := bionic/libstdc++
131
132TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
133	-print-libgcc-file-name)
134
135KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
136KERNEL_HEADERS_ARCH   := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH)
137KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
138
139TARGET_C_INCLUDES := \
140	$(libc_root)/arch-arm64/include \
141	$(libc_root)/include \
142	$(libstdc++_root)/include \
143	$(KERNEL_HEADERS) \
144	$(libm_root)/include \
145	$(libm_root)/include/arm64 \
146
147TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
148TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
149TARGET_CRTEND_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
150
151TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
152TARGET_CRTEND_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
153
154TARGET_STRIP_MODULE:=true
155
156TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
157
158TARGET_CUSTOM_LD_COMMAND := true
159
160define transform-o-to-shared-lib-inner
161$(hide) $(PRIVATE_CXX) \
162	-nostdlib -Wl,-soname,$(notdir $@) \
163	-Wl,-shared,-Bsymbolic \
164	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
165	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_SO_O)) \
166	$(PRIVATE_ALL_OBJECTS) \
167	-Wl,--whole-archive \
168	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
169	-Wl,--no-whole-archive \
170	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
171	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
172	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
173	$(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
174	$(PRIVATE_TARGET_FDO_LIB) \
175	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
176	-o $@ \
177	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
178	$(PRIVATE_LDFLAGS) \
179	$(PRIVATE_TARGET_LIBGCC) \
180	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_SO_O))
181endef
182
183define transform-o-to-executable-inner
184$(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -fPIE -pie \
185	-Wl,-dynamic-linker,/system/bin/linker64 \
186	-Wl,-z,nocopyreloc \
187	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
188	-Wl,-rpath-link=$(TARGET_OUT_INTERMEDIATE_LIBRARIES) \
189	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_DYNAMIC_O)) \
190	$(PRIVATE_ALL_OBJECTS) \
191	-Wl,--whole-archive \
192	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
193	-Wl,--no-whole-archive \
194	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
195	$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
196	$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
197	$(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
198	$(PRIVATE_TARGET_FDO_LIB) \
199	$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
200	-o $@ \
201	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
202	$(PRIVATE_LDFLAGS) \
203	$(PRIVATE_TARGET_LIBGCC) \
204	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
205endef
206
207define transform-o-to-static-executable-inner
208$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic \
209	-o $@ \
210	$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
211	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_STATIC_O)) \
212	$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
213	$(PRIVATE_LDFLAGS) \
214	$(PRIVATE_ALL_OBJECTS) \
215	-Wl,--whole-archive \
216	$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
217	-Wl,--no-whole-archive \
218	$(call normalize-target-libraries,$(filter-out %libc_nomalloc.a,$(filter-out %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES)))) \
219	-Wl,--start-group \
220	$(call normalize-target-libraries,$(filter %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
221	$(call normalize-target-libraries,$(filter %libc_nomalloc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
222	$(PRIVATE_TARGET_FDO_LIB) \
223	$(PRIVATE_TARGET_LIBGCC) \
224	-Wl,--end-group \
225	$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
226endef
227