The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | # This is included by the top-level Makefile. |
| 2 | # It sets up standard variables based on the |
| 3 | # current configuration and platform, which |
| 4 | # are not specific to what is being built. |
| 5 | |
Ying Wang | 6714dbc | 2010-03-30 16:42:15 -0700 | [diff] [blame] | 6 | # Only use ANDROID_BUILD_SHELL to wrap around bash. |
| 7 | # DO NOT use other shells such as zsh. |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 8 | ifdef ANDROID_BUILD_SHELL |
| 9 | SHELL := $(ANDROID_BUILD_SHELL) |
| 10 | else |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 11 | # Use bash, not whatever shell somebody has installed as /bin/sh |
| 12 | # This is repeated from main.mk, since envsetup.sh runs this file |
| 13 | # directly. |
| 14 | SHELL := /bin/bash |
Ying Wang | 2ce495a | 2010-03-30 12:55:13 -0700 | [diff] [blame] | 15 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 16 | |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 17 | # Utility variables. |
| 18 | empty := |
| 19 | space := $(empty) $(empty) |
| 20 | comma := , |
| 21 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 22 | # Tell python not to spam the source tree with .pyc files. This |
| 23 | # only has an effect on python 2.6 and above. |
| 24 | export PYTHONDONTWRITEBYTECODE := 1 |
| 25 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | # Standard source directories. |
| 27 | SRC_DOCS:= $(TOPDIR)docs |
| 28 | # TODO: Enforce some kind of layering; only add include paths |
| 29 | # when a module links against a particular library. |
| 30 | # TODO: See if we can remove most of these from the global list. |
| 31 | SRC_HEADERS := \ |
| 32 | $(TOPDIR)system/core/include \ |
| 33 | $(TOPDIR)hardware/libhardware/include \ |
| 34 | $(TOPDIR)hardware/libhardware_legacy/include \ |
| 35 | $(TOPDIR)hardware/ril/include \ |
Elliott Hughes | 89898df | 2012-05-03 16:37:40 -0700 | [diff] [blame] | 36 | $(TOPDIR)libnativehelper/include \ |
Mathias Agopian | bd118e6 | 2012-03-05 16:04:31 -0800 | [diff] [blame] | 37 | $(TOPDIR)frameworks/native/include \ |
| 38 | $(TOPDIR)frameworks/native/opengl/include \ |
James Dong | c49ee71 | 2012-03-23 18:46:42 -0700 | [diff] [blame] | 39 | $(TOPDIR)frameworks/av/include \ |
Derek Sollenberger | aa42672 | 2014-02-27 14:02:37 -0500 | [diff] [blame] | 40 | $(TOPDIR)frameworks/base/include |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | SRC_HOST_HEADERS:=$(TOPDIR)tools/include |
| 42 | SRC_LIBRARIES:= $(TOPDIR)libs |
| 43 | SRC_SERVERS:= $(TOPDIR)servers |
| 44 | SRC_TARGET_DIR := $(TOPDIR)build/target |
Ying Wang | 19cc22b | 2012-12-04 15:07:34 -0800 | [diff] [blame] | 45 | SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 46 | SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | |
| 48 | # Some specific paths to tools |
| 49 | SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc |
| 50 | |
| 51 | # Various mappings to avoid hard-coding paths all over the place |
| 52 | include $(BUILD_SYSTEM)/pathmap.mk |
| 53 | |
| 54 | # ############################################################### |
| 55 | # Build system internal files |
| 56 | # ############################################################### |
| 57 | |
| 58 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 59 | |
| 60 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 61 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 62 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 63 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
| 64 | BUILD_RAW_STATIC_LIBRARY := $(BUILD_SYSTEM)/raw_static_library.mk |
| 65 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 66 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
| 67 | BUILD_RAW_EXECUTABLE:= $(BUILD_SYSTEM)/raw_executable.mk |
| 68 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 69 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 70 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 72 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 73 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 74 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 75 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 76 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 77 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 78 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 79 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
| 80 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 81 | |
| 82 | BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk |
| 83 | BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk |
| 84 | BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk |
| 85 | BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk |
| 86 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 87 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 88 | BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 89 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 90 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 91 | |
Brian Muramatsu | 7314933 | 2012-03-02 14:37:08 -0800 | [diff] [blame] | 92 | -include cts/build/config.mk |
| 93 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 94 | # ############################################################### |
| 95 | # Parse out any modifier targets. |
| 96 | # ############################################################### |
| 97 | |
| 98 | # The 'showcommands' goal says to show the full command |
| 99 | # lines being executed, instead of a short message about |
| 100 | # the kind of operation being done. |
| 101 | SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS)) |
| 102 | |
| 103 | |
| 104 | # ############################################################### |
| 105 | # Set common values |
| 106 | # ############################################################### |
| 107 | |
| 108 | # These can be changed to modify both host and device modules. |
Marco Nelissen | e4aaa36 | 2009-07-13 20:42:49 -0700 | [diff] [blame] | 109 | COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 110 | COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG |
| 111 | |
Marco Nelissen | 7f0a18f | 2009-08-13 11:13:21 -0700 | [diff] [blame] | 112 | COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo |
Marco Nelissen | 73a075d | 2009-07-08 17:51:18 -0700 | [diff] [blame] | 113 | COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 114 | |
| 115 | # Set the extensions used for various packages |
| 116 | COMMON_PACKAGE_SUFFIX := .zip |
| 117 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 118 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 119 | |
| 120 | # list of flags to turn specific warnings in to errors |
Marco Nelissen | bac9a7f | 2009-07-13 17:51:59 -0700 | [diff] [blame] | 121 | TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 122 | |
Patrick Scott | f4f85a2 | 2009-06-25 10:38:26 -0400 | [diff] [blame] | 123 | # TODO: do symbol compression |
| 124 | TARGET_COMPRESS_MODULE_SYMBOLS := false |
| 125 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 126 | # ############################################################### |
| 127 | # Include sub-configuration files |
| 128 | # ############################################################### |
| 129 | |
| 130 | # --------------------------------------------------------------- |
| 131 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 132 | # If this file doesn't exist, the environment variables will |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | # be used, and if that doesn't work, then the default is an |
| 134 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 135 | ifndef ANDROID_BUILDSPEC |
| 136 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 137 | endif |
| 138 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 139 | |
| 140 | # --------------------------------------------------------------- |
| 141 | # Define most of the global variables. These are the ones that |
| 142 | # are specific to the user's build configuration. |
| 143 | include $(BUILD_SYSTEM)/envsetup.mk |
| 144 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 145 | # The build system exposes several variables for where to find the kernel |
| 146 | # headers: |
| 147 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 148 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 149 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 150 | # explicitly set by anyone, the build system always adds this subdir. |
| 151 | # |
| 152 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 153 | # to allow other directories to be included. This is useful if there's |
| 154 | # some common place where a few headers are being kept for a group |
| 155 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 156 | # contain some headers for several of <vendor>'s devices. |
| 157 | # |
| 158 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 159 | # graph. This allows architecture products to provide headers for the |
| 160 | # devices using that architecture. For example, |
| 161 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 162 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 163 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 164 | # The build system then combines all the values specified by all the |
| 165 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 166 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 167 | # |
| 168 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 169 | # layout of the kernel include/ directory. For example, |
| 170 | # device/samsung/tuna/kernel-headers/linux/, |
| 171 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 172 | # etc. |
| 173 | # |
| 174 | # NOTE: These directories MUST contain post-processed headers using the |
| 175 | # bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel |
| 176 | # headers must also be checked in, but in a different subdirectory. By |
| 177 | # convention, the originals should be checked into original-kernel-headers |
| 178 | # directory of the same parent dir. For example, |
| 179 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 180 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 181 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 182 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 183 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 184 | define validate-kernel-headers |
| 185 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 186 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 187 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 188 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 189 | # also allow the board config to provide additional directories since |
| 190 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 191 | # that both are valid devices but derived_hw needs to use kernel headers |
| 192 | # from base_hw. |
| 193 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 194 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 195 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 196 | |
| 197 | # then add product-inherited includes, to allow for |
| 198 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 199 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 200 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 201 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 202 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 203 | # Clean up/verify variables defined by the board config file. |
| 204 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 205 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 206 | ifeq ($(TARGET_CPU_ABI),) |
| 207 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 208 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 209 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 210 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 211 | # $(1): os/arch |
| 212 | define select-android-config-h |
Ying Wang | 5bdf305 | 2012-09-20 10:06:33 -0700 | [diff] [blame] | 213 | build/core/combo/include/arch/$(1)/AndroidConfig.h |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 214 | endef |
| 215 | |
| 216 | combo_target := HOST_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 217 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 218 | include $(BUILD_SYSTEM)/combo/select.mk |
| 219 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 220 | # Load the 2nd host arch if it's needed. |
| 221 | ifdef HOST_2ND_ARCH |
| 222 | combo_target := HOST_ |
| 223 | combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX) |
| 224 | include $(BUILD_SYSTEM)/combo/select.mk |
| 225 | endif |
| 226 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 227 | # on windows, the tools have .exe at the end, and we depend on the |
| 228 | # host config stuff being done first |
| 229 | |
| 230 | combo_target := TARGET_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 231 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 232 | include $(BUILD_SYSTEM)/combo/select.mk |
| 233 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 234 | # Load the 2nd target arch if it's needed. |
| 235 | ifdef TARGET_2ND_ARCH |
| 236 | combo_target := TARGET_ |
| 237 | combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX) |
| 238 | include $(BUILD_SYSTEM)/combo/select.mk |
| 239 | endif |
| 240 | |
Colin Cross | a3339e9 | 2014-04-30 18:09:13 -0700 | [diff] [blame] | 241 | ifdef TARGET_PREFER_32_BIT |
| 242 | TARGET_PREFER_32_BIT_APPS := true |
| 243 | TARGET_PREFER_32_BIT_EXECUTABLES := true |
| 244 | endif |
| 245 | |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 246 | ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS)) |
| 247 | TARGET_SUPPORTS_32_BIT_APPS := true |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 248 | endif |
| 249 | |
| 250 | # "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are |
| 251 | # comma separated lists of the 32 and 64 bit ABIs (in order of |
| 252 | # preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT |
| 253 | # are defined by the board config, we use them. Else, we construct |
| 254 | # these lists based on whether TARGET_IS_64_BIT is set. |
| 255 | # |
| 256 | # Note that this assumes that the 2ND_CPU_ABI for a 64 bit target |
| 257 | # is always 32 bits. If this isn't the case, these variables should |
Brian Carlstrom | d795046 | 2014-06-16 16:51:42 -0700 | [diff] [blame] | 258 | # be overriden in the board configuration. |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 259 | ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT)) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 260 | ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS)) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 261 | TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 262 | endif |
| 263 | endif |
| 264 | |
| 265 | ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT)) |
| 266 | ifneq (true,$(TARGET_IS_64_BIT)) |
| 267 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 268 | else |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 269 | ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS)) |
| 270 | # For a 64 bit target, assume that the 2ND_CPU_ABI |
| 271 | # is a 32 bit ABI. |
| 272 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2) |
| 273 | endif |
| 274 | endif |
| 275 | endif |
| 276 | |
| 277 | # "ro.product.cpu.abilist" is a comma separated list of ABIs (in order |
| 278 | # of preference) that the target supports. If a TARGET_CPU_ABI_LIST |
| 279 | # is specified by the board configuration, we use that. If not, we |
| 280 | # build a list out of the TARGET_CPU_ABIs specified by the config. |
| 281 | ifeq (,$(TARGET_CPU_ABI_LIST)) |
| 282 | ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true) |
| 283 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT) |
| 284 | else |
| 285 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_64_BIT) $(TARGET_CPU_ABI_LIST_32_BIT) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 286 | endif |
| 287 | endif |
| 288 | |
| 289 | # Strip whitespace from the ABI list string. |
| 290 | TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST))) |
| 291 | TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT))) |
| 292 | TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))) |
| 293 | |
Ying Wang | df2b4b3 | 2012-01-12 16:38:17 -0800 | [diff] [blame] | 294 | # Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX |
| 295 | # if only TARGET_TOOLS_PREFIX is passed to the make command. |
| 296 | ifndef TARGET_TOOLCHAIN_ROOT |
| 297 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX))) |
| 298 | TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT))) |
| 299 | TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT)) |
| 300 | endif |
| 301 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 302 | # Normalize WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK |
| 303 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 304 | WITH_STATIC_ANALYZER := |
| 305 | endif |
| 306 | ifeq ($(strip $(WITH_SYNTAX_CHECK)),0) |
| 307 | WITH_SYNTAX_CHECK := |
| 308 | endif |
| 309 | |
| 310 | # Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found |
Andrew Hsieh | c4f7fba | 2014-03-03 16:53:17 +0800 | [diff] [blame] | 311 | SYNTAX_TOOLS_PREFIX := prebuilts/misc/$(HOST_PREBUILT_TAG)/analyzer/bin |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 312 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 313 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),) |
| 314 | $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist) |
| 315 | WITH_STATIC_ANALYZER := |
| 316 | endif |
| 317 | endif |
Andrew Hsieh | e7c2d14 | 2013-08-27 17:55:46 +0800 | [diff] [blame] | 318 | ifneq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 319 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-syntax),) |
| 320 | $(warning *** Disable WITH_SYNTAX_CHECK because $(SYNTAX_TOOLS_PREFIX)/ccc-syntax does not exist) |
| 321 | WITH_SYNTAX_CHECK := |
| 322 | endif |
| 323 | endif |
| 324 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 325 | # WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK |
| 326 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 327 | ifneq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 328 | $(warning *** Disable WITH_SYNTAX_CHECK in the presence of static analyzer WITH_STATIC_ANALYZER) |
| 329 | WITH_SYNTAX_CHECK := |
| 330 | endif |
| 331 | endif |
| 332 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 333 | # Pick a Java compiler. |
| 334 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 335 | |
| 336 | # --------------------------------------------------------------- |
| 337 | # Check that the configuration is current. We check that |
| 338 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 339 | # Don't fail if we're called from envsetup, so they have a |
| 340 | # chance to update their environment. |
| 341 | |
| 342 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 343 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 344 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 345 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 346 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 347 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 348 | $(info *** - Re-run lunch or choosecombo) |
| 349 | $(info *** If you use buildspec.mk:) |
| 350 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 351 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 352 | $(error bailing..) |
| 353 | endif |
| 354 | endif |
| 355 | endif |
| 356 | |
| 357 | |
| 358 | # --------------------------------------------------------------- |
| 359 | # Generic tools. |
| 360 | |
Ying Wang | 6374153 | 2014-05-16 09:37:23 -0700 | [diff] [blame] | 361 | LEX := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/flex/flex-2.5.39 |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 362 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
| 363 | # external/bison/data. |
| 364 | # To run bison from elsewhere you need to set up enviromental variable |
| 365 | # BISON_PKGDATADIR. |
| 366 | BISON_PKGDATADIR := $(PWD)/external/bison/data |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 367 | BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 368 | YACC := $(BISON) -d |
| 369 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 370 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 371 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 372 | DOXYGEN:= doxygen |
| 373 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 374 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX) |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 375 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 376 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 377 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 378 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 379 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 380 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 381 | else |
| 382 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 383 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 384 | MKYAFFS2 := $(HOST_OUT_EXECUTABLES)/mkyaffs2image$(HOST_EXECUTABLE_SUFFIX) |
| 385 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 386 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
| 387 | MKEXT2IMG := $(HOST_OUT_EXECUTABLES)/genext2fs$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 9dd4ba8 | 2010-08-03 14:43:15 -0700 | [diff] [blame] | 388 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 389 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 390 | MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX) |
| 391 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 392 | MKEXT2BOOTIMG := external/genext2fs/mkbootimg_ext2.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 393 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
| 394 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 395 | MKTARBALL := build/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 396 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
| 397 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 398 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 399 | PROGUARD := external/proguard/bin/proguard.sh |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 400 | JAVATAGS := build/tools/java-event-log-tags.py |
Shih-wei Liao | d01fadb | 2010-10-08 16:57:46 -0700 | [diff] [blame] | 401 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX) |
Stephen Hines | e719f28 | 2012-11-28 16:52:41 -0800 | [diff] [blame] | 402 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 0d570a7 | 2012-06-18 18:45:40 -0700 | [diff] [blame] | 403 | LINT := prebuilts/sdk/tools/lint |
Ying Wang | a3b7593 | 2013-08-14 16:59:00 -0700 | [diff] [blame] | 404 | RMTYPEDEFS := $(HOST_OUT_EXECUTABLES)/rmtypedefs |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 405 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 406 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 407 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 408 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 409 | |
Raphael | 9ca1628 | 2010-04-16 17:50:09 -0700 | [diff] [blame] | 410 | # ACP is always for the build OS, not for the host OS |
| 411 | ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX) |
| 412 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 413 | # dx is java behind a shell script; no .exe necessary. |
| 414 | DX := $(HOST_OUT_EXECUTABLES)/dx |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 415 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX) |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 416 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 417 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 418 | EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 419 | |
Ying Wang | dc7fee9 | 2014-02-05 18:24:45 -0800 | [diff] [blame] | 420 | # Tool to merge AndroidManifest.xmls |
| 421 | ANDROID_MANIFEST_MERGER := java -classpath prebuilts/devtools/tools/lib/manifest-merger.jar com.android.manifmerger.Main merge |
| 422 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 423 | YACC_HEADER_SUFFIX:= .hpp |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 424 | |
| 425 | # Don't use column under Windows, cygwin or not |
| 426 | ifeq ($(HOST_OS),windows) |
| 427 | COLUMN:= cat |
| 428 | else |
| 429 | COLUMN:= column |
| 430 | endif |
| 431 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 432 | ifeq ($(HOST_OS),darwin) |
Narayan Kamath | 422fadc | 2014-04-01 14:16:26 +0100 | [diff] [blame] | 433 | ifeq ($(LEGACY_USE_JAVA6),) |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 434 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
| 435 | else |
| 436 | # Deliberately set to blank for Java 6 installations on MacOS. These |
| 437 | # versions allegedly use a non-standard directory structure. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 438 | HOST_JDK_TOOLS_JAR := |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 439 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 440 | else |
| 441 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 442 | endif |
| 443 | |
| 444 | ifneq ($(HOST_JDK_TOOLS_JAR),) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 445 | ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),) |
Chris Wren | 1f11575 | 2014-03-07 14:51:56 -0500 | [diff] [blame] | 446 | $(error Error: could not find jdk tools.jar, please check if your JDK was installed correctly) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 447 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 448 | endif |
| 449 | |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 450 | # Is the host JDK 64-bit version? |
| 451 | HOST_JDK_IS_64BIT_VERSION := |
| 452 | ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),) |
| 453 | HOST_JDK_IS_64BIT_VERSION := true |
| 454 | endif |
| 455 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 456 | # It's called md5 on Mac OS and md5sum on Linux |
| 457 | ifeq ($(HOST_OS),darwin) |
| 458 | MD5SUM:=md5 -q |
| 459 | else |
| 460 | MD5SUM:=md5sum |
| 461 | endif |
| 462 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 463 | APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR) |
| 464 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 465 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 466 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 467 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 468 | # The default key if not set as LOCAL_CERTIFICATE |
| 469 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 470 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 471 | else |
| 472 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 473 | endif |
| 474 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 475 | # ############################################################### |
| 476 | # Set up final options. |
| 477 | # ############################################################### |
| 478 | |
| 479 | HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 480 | HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 481 | |
| 482 | HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 483 | HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 484 | |
| 485 | TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 486 | TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 487 | |
| 488 | TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 489 | TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 490 | |
| 491 | HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 492 | TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 493 | |
| 494 | HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 495 | TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 496 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 497 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 498 | |
| 499 | # Many host compilers don't support these flags, so we have to make |
| 500 | # sure to only specify them for the target compilers checked in to |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 501 | # the source tree. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 502 | TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 503 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 504 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 505 | HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS) |
| 506 | HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 507 | |
Dave Bort | 9528248 | 2009-04-23 18:44:55 -0700 | [diff] [blame] | 508 | TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS) |
| 509 | TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 510 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 511 | ifdef TARGET_2ND_ARCH |
Ying Wang | 9fb3526 | 2014-02-21 16:17:05 -0800 | [diff] [blame] | 512 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
| 513 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 514 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
| 515 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 516 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LD_DIRS += -L$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES) |
| 517 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES) |
| 518 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS) |
| 519 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS) |
| 520 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS) |
| 521 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS) |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 522 | endif |
| 523 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 524 | ifdef HOST_2ND_ARCH |
| 525 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS) |
| 526 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS) |
| 527 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS) |
| 528 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS) |
| 529 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LD_DIRS += -L$($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 530 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_INCLUDES := $(HOST_PROJECT_INCLUDES) |
| 531 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS) |
| 532 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS) |
| 533 | endif |
| 534 | |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 535 | # allow overriding default Java libraries on a per-target basis |
| 536 | ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),) |
Ying Wang | 14c975b | 2014-07-21 14:42:29 -0700 | [diff] [blame] | 537 | TARGET_DEFAULT_JAVA_LIBRARIES := core-libart core-junit ext framework |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 538 | endif |
| 539 | |
Ying Wang | d450706 | 2014-05-16 16:27:11 -0700 | [diff] [blame] | 540 | TARGET_CPU_SMP ?= true |
| 541 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 542 | # Flags for DEX2OAT |
| 543 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
| 544 | DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_CPU_VARIANT) |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 545 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | fb910dd | 2014-05-13 09:02:56 -0700 | [diff] [blame] | 546 | ifneq (,$(filter $(DEX2OAT_TARGET_CPU_VARIANT),cortex-a7 cortex-a15 krait denver)) |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 547 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := div |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 548 | endif |
| 549 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 550 | ifdef TARGET_2ND_ARCH |
| 551 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
| 552 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_2ND_CPU_VARIANT) |
| 553 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
| 554 | ifneq (,$(filter $($(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT),cortex-a7 cortex-a15 krait denver)) |
| 555 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := div |
| 556 | endif |
| 557 | endif |
| 558 | |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 559 | # define clang/llvm tools and global flags |
| 560 | include $(BUILD_SYSTEM)/clang/config.mk |
yroussel | 1319005 | 2012-01-12 16:09:06 +0100 | [diff] [blame] | 561 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 562 | # ############################################################### |
| 563 | # Collect a list of the SDK versions that we could compile against |
| 564 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 565 | # ############################################################### |
| 566 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 567 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 568 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 569 | |
| 570 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 571 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 572 | # |
| 573 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 574 | # on each line for sort to process. |
| 575 | # sort -g is a numeric sort, so 1 2 3 10 instead of 1 10 2 3. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 576 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 577 | # Numerically sort a list of numbers |
| 578 | # $(1): the list of numbers to be sorted |
| 579 | define numerically_sort |
| 580 | $(shell function sgrax() { \ |
| 581 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 582 | } ; \ |
| 583 | ( sgrax $(1) | sort -g ) ) |
| 584 | endef |
| 585 | |
Ying Wang | a1ff629 | 2012-05-10 18:07:33 -0700 | [diff] [blame] | 586 | TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\ |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 587 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
Ying Wang | 2f7b92c | 2014-07-21 13:44:06 -0700 | [diff] [blame] | 588 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
| 589 | |
| 590 | # We don't have prebuilt system_current SDK yet. |
Ying Wang | 02a83e9 | 2014-09-04 12:18:51 -0700 | [diff] [blame^] | 591 | TARGET_AVAILABLE_SDK_VERSIONS := $(TARGET_AVAILABLE_SDK_VERSIONS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 592 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 593 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Hui Shu | e8af17e | 2014-02-21 14:18:19 -0800 | [diff] [blame] | 594 | INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 595 | INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt |
| 596 | INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-removed.txt |
Gary King | 1e80c29 | 2010-03-08 17:16:57 -0800 | [diff] [blame] | 597 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 598 | # This is the standard way to name a directory containing prebuilt target |
| 599 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 600 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 601 | ifdef TARGET_2ND_ARCH |
| 602 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 603 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 604 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 605 | # Set up RS prebuilt variables for compatibility library |
| 606 | |
| 607 | RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libclcore.bc |
| 608 | RS_PREBUILT_LIBPATH := -L prebuilts/ndk/8/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib |
| 609 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
| 610 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 611 | include $(BUILD_SYSTEM)/dumpvar.mk |