blob: fbf8ab09a05802676cf7f21e9283840bfb8c2d04 [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
Elliott Hughes43146112015-08-28 10:31:28 -070023# makefile variable definitions. Their
Ben Chengdb4fc202013-10-04 16:02:59 -070024# purpose is to allow module Android.mk files to selectively compile
25# different versions of code based upon the funtionality and
26# instructions available in a given architecture version.
27#
28# The blocks also define specific arch_variant_cflags, which
29# include defines, and compiler settings for the given architecture
30# version.
31#
32ifeq ($(strip $(TARGET_ARCH_VARIANT)),)
33TARGET_ARCH_VARIANT := armv8
34endif
35
Ben Cheng4de6fa42014-04-10 22:46:26 -070036# Decouple NDK library selection with platform compiler version
Przemyslaw Szczepaniakac6a9192014-07-17 17:54:41 +010037TARGET_NDK_GCC_VERSION := 4.9
Ben Cheng4de6fa42014-04-10 22:46:26 -070038
Ben Chengdb4fc202013-10-04 16:02:59 -070039ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),)
Ben Chengd0331212014-05-19 16:22:21 -070040TARGET_GCC_VERSION := 4.9
Ben Chengdb4fc202013-10-04 16:02:59 -070041else
42TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP)
43endif
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
50include $(TARGET_ARCH_SPECIFIC_MAKEFILE)
Dehao Chen25671e12014-07-23 14:28:58 -070051include $(BUILD_SYSTEM)/combo/fdo.mk
Ben Chengdb4fc202013-10-04 16:02:59 -070052
53# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
54ifeq ($(strip $(TARGET_TOOLS_PREFIX)),)
55TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/aarch64/aarch64-linux-android-$(TARGET_GCC_VERSION)
56TARGET_TOOLS_PREFIX := $(TARGET_TOOLCHAIN_ROOT)/bin/aarch64-linux-android-
57endif
58
Dan Albert216ecac2015-05-04 12:44:44 -070059TARGET_CC := $(TARGET_TOOLS_PREFIX)gcc
60TARGET_CXX := $(TARGET_TOOLS_PREFIX)g++
61TARGET_AR := $(TARGET_TOOLS_PREFIX)ar
62TARGET_OBJCOPY := $(TARGET_TOOLS_PREFIX)objcopy
63TARGET_LD := $(TARGET_TOOLS_PREFIX)ld
64TARGET_READELF := $(TARGET_TOOLS_PREFIX)readelf
65TARGET_STRIP := $(TARGET_TOOLS_PREFIX)strip
Shinichiro Hamaji0e7587a2015-10-09 14:36:04 +090066TARGET_NM := $(TARGET_TOOLS_PREFIX)nm
67
68define $(combo_var_prefix)transform-shared-lib-to-toc
69$(call _gen_toc_command_for_elf,$(1),$(2))
70endef
Ben Chengdb4fc202013-10-04 16:02:59 -070071
72TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
73
Elliott Hughesc2947792013-12-16 18:01:19 -080074TARGET_GLOBAL_CFLAGS += \
75 -fno-strict-aliasing \
76
Ben Chengdb4fc202013-10-04 16:02:59 -070077TARGET_GLOBAL_CFLAGS += \
Ben Chengd0331212014-05-19 16:22:21 -070078 -fstack-protector \
Ben Chengdb4fc202013-10-04 16:02:59 -070079 -ffunction-sections \
80 -fdata-sections \
81 -funwind-tables \
82 -Wa,--noexecstack \
83 -Werror=format-security \
84 -D_FORTIFY_SOURCE=2 \
85 -fno-short-enums \
Andrew Hsieh48f239c2014-05-09 14:13:13 +080086 -no-canonical-prefixes \
87 -fno-canonical-system-headers \
Ben Chengdb4fc202013-10-04 16:02:59 -070088 $(arch_variant_cflags) \
Ben Chengdb4fc202013-10-04 16:02:59 -070089
Elliott Hughes18042e12014-02-05 16:23:47 -080090# Help catch common 32/64-bit errors.
91TARGET_GLOBAL_CFLAGS += \
92 -Werror=pointer-to-int-cast \
93 -Werror=int-to-pointer-cast \
Elliott Hughesf5e204b2015-02-21 13:21:20 -080094 -Werror=implicit-function-declaration \
Colin Cross8f47fc32014-01-27 17:34:21 -080095
Ben Chengdb4fc202013-10-04 16:02:59 -070096TARGET_GLOBAL_CFLAGS += -fno-strict-volatile-bitfields
97
98# This is to avoid the dreaded warning compiler message:
99# note: the mangling of 'va_list' has changed in GCC 4.4
100#
101# The fact that the mangling changed does not affect the NDK ABI
102# very fortunately (since none of the exposed APIs used va_list
103# in their exported C++ functions). Also, GCC 4.5 has already
104# removed the warning from the compiler.
105#
106TARGET_GLOBAL_CFLAGS += -Wno-psabi
107
108TARGET_GLOBAL_LDFLAGS += \
109 -Wl,-z,noexecstack \
Nick Kralevich45545762014-05-30 15:45:24 -0700110 -Wl,-z,relro \
111 -Wl,-z,now \
Dehao Chen734de7a2015-01-14 11:21:22 -0800112 -Wl,--build-id=md5 \
Ben Chengdb4fc202013-10-04 16:02:59 -0700113 -Wl,--warn-shared-textrel \
114 -Wl,--fatal-warnings \
Andrew Hsieh50536c22014-04-15 11:54:06 -0700115 -Wl,-maarch64linux \
Dmitriy Ivanov179685c2014-11-13 14:51:10 -0800116 -Wl,--hash-style=gnu \
Andrew Hsieh0e0259c2015-05-11 06:03:07 +0000117 -Wl,--fix-cortex-a53-843419 \
Dan Willemsenda9c00d2015-12-02 19:19:04 -0800118 -Wl,--no-undefined-version \
Ben Chengdb4fc202013-10-04 16:02:59 -0700119 $(arch_variant_ldflags)
120
Ying Wangcf6f8082014-12-19 16:37:46 -0800121# Disable transitive dependency library symbol resolving.
122TARGET_GLOBAL_LDFLAGS += -Wl,--allow-shlib-undefined
123
Ben Chengdb4fc202013-10-04 16:02:59 -0700124TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
125
126# More flags/options can be added here
127TARGET_RELEASE_CFLAGS := \
128 -DNDEBUG \
129 -O2 -g \
130 -Wstrict-aliasing=2 \
131 -fgcse-after-reload \
132 -frerun-cse-after-loop \
133 -frename-registers
134
135libc_root := bionic/libc
136libm_root := bionic/libm
Ben Chengdb4fc202013-10-04 16:02:59 -0700137
Ben Cheng71c36eb2013-10-28 10:27:58 -0700138TARGET_LIBGCC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
139 -print-libgcc-file-name)
Andrew Hsieh4c952d72014-05-29 02:47:27 -0700140TARGET_LIBATOMIC := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
141 -print-file-name=libatomic.a)
Dan Albert4bbc6c72014-09-19 14:25:57 -0700142TARGET_LIBGCOV := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
143 -print-file-name=libgcov.a)
Ben Chengdb4fc202013-10-04 16:02:59 -0700144
Elliott Hughesdddb5662014-01-10 16:35:08 -0800145KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
Christopher Ferris6a2f2852015-09-16 11:09:04 -0700146KERNEL_HEADERS_COMMON += $(libc_root)/kernel/common
Elliott Hughesdddb5662014-01-10 16:35:08 -0800147KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH)
Elliott Hughes26990f52013-12-20 15:37:55 -0800148KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
Ben Chengdb4fc202013-10-04 16:02:59 -0700149
150TARGET_C_INCLUDES := \
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800151 $(libc_root)/arch-arm64/include \
Ben Chengdb4fc202013-10-04 16:02:59 -0700152 $(libc_root)/include \
Ben Chengdb4fc202013-10-04 16:02:59 -0700153 $(KERNEL_HEADERS) \
154 $(libm_root)/include \
Colin Cross4f0eb7d2014-01-21 19:35:38 -0800155 $(libm_root)/include/arm64 \
Ben Chengdb4fc202013-10-04 16:02:59 -0700156
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
Dmitriy Ivanov4c2d1a62015-04-20 16:59:05 -0700164TARGET_PACK_MODULE_RELOCATIONS := true
Dimitry Ivanov1eca10f2015-04-23 04:22:33 +0000165
Dan Alberte088c0d2014-11-13 10:15:46 -0800166TARGET_LINKER := /system/bin/linker64