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 := , |
Ying Wang | 58a5db3 | 2014-10-03 11:36:27 -0700 | [diff] [blame] | 21 | # Note that make will eat the newline just before endef. |
| 22 | define newline |
| 23 | |
| 24 | |
| 25 | endef |
Ying Wang | 127da9e | 2015-09-22 14:37:53 -0700 | [diff] [blame] | 26 | # The pound character "#" |
| 27 | define pound |
| 28 | # |
| 29 | endef |
Ying Wang | 58a5db3 | 2014-10-03 11:36:27 -0700 | [diff] [blame] | 30 | # Unfortunately you can't simply define backslash as \ or \\. |
| 31 | backslash := \a |
| 32 | backslash := $(patsubst %a,%,$(backslash)) |
Ying Wang | 157a5e1 | 2012-09-27 13:26:25 -0700 | [diff] [blame] | 33 | |
Joe Onorato | bc8abb6 | 2010-01-04 12:57:38 -0800 | [diff] [blame] | 34 | # Tell python not to spam the source tree with .pyc files. This |
| 35 | # only has an effect on python 2.6 and above. |
| 36 | export PYTHONDONTWRITEBYTECODE := 1 |
| 37 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 38 | # Standard source directories. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 39 | # TODO: Enforce some kind of layering; only add include paths |
| 40 | # when a module links against a particular library. |
| 41 | # TODO: See if we can remove most of these from the global list. |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 42 | SRC_SYSTEM_HEADERS := \ |
| 43 | $(wildcard system/core/include) \ |
| 44 | $(wildcard system/media/audio/include) \ |
| 45 | $(wildcard hardware/libhardware/include) \ |
| 46 | $(wildcard hardware/libhardware_legacy/include) \ |
| 47 | $(wildcard hardware/ril/include) \ |
| 48 | $(wildcard libnativehelper/include) \ |
| 49 | $(wildcard frameworks/native/include) \ |
| 50 | $(wildcard frameworks/native/opengl/include) \ |
| 51 | $(wildcard frameworks/av/include) \ |
| 52 | $(wildcard frameworks/base/include) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 53 | SRC_TARGET_DIR := $(TOPDIR)build/target |
Ying Wang | 19cc22b | 2012-12-04 15:07:34 -0800 | [diff] [blame] | 54 | SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 55 | SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 56 | |
| 57 | # Some specific paths to tools |
| 58 | SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc |
| 59 | |
| 60 | # Various mappings to avoid hard-coding paths all over the place |
| 61 | include $(BUILD_SYSTEM)/pathmap.mk |
| 62 | |
| 63 | # ############################################################### |
| 64 | # Build system internal files |
| 65 | # ############################################################### |
| 66 | |
| 67 | BUILD_COMBOS:= $(BUILD_SYSTEM)/combo |
| 68 | |
| 69 | CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk |
| 70 | BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk |
| 71 | BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk |
| 72 | BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk |
Alexey Polyudov | ccdc311 | 2016-08-01 17:41:49 -0700 | [diff] [blame^] | 73 | BUILD_AUX_STATIC_LIBRARY:= $(BUILD_SYSTEM)/aux_static_library.mk |
| 74 | BUILD_AUX_EXECUTABLE:= $(BUILD_SYSTEM)/aux_executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk |
| 76 | BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk |
| 78 | BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk |
Dima Zavin | f625bf2 | 2010-09-16 00:25:16 -0700 | [diff] [blame] | 79 | BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 80 | BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk |
| 81 | BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk |
| 82 | BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk |
| 83 | BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk |
| 84 | BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk |
| 85 | BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk |
| 86 | BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk |
| 87 | BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 88 | BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk |
Colin Cross | 52a341b | 2013-11-15 14:37:23 -0800 | [diff] [blame] | 89 | BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk |
Ying Wang | 4c68174 | 2010-07-20 11:08:47 -0700 | [diff] [blame] | 90 | BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk |
Dan Albert | 36b6f04 | 2015-07-30 16:56:30 -0700 | [diff] [blame] | 91 | BUILD_FUZZ_TEST := $(BUILD_SYSTEM)/fuzz_test.mk |
| 92 | BUILD_HOST_FUZZ_TEST := $(BUILD_SYSTEM)/host_fuzz_test.mk |
Christopher Ferris | 70ca5e5 | 2014-02-04 22:09:16 -0800 | [diff] [blame] | 93 | |
| 94 | BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk |
| 95 | BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk |
| 96 | BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk |
| 97 | BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk |
| 98 | |
Ying Wang | 13d6950 | 2012-11-01 17:22:33 -0700 | [diff] [blame] | 99 | BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk |
Narayan Kamath | 0dd273a | 2013-10-28 13:20:52 +0000 | [diff] [blame] | 100 | BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk |
| 101 | BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk |
| 102 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 103 | |
| 104 | # ############################################################### |
| 105 | # Parse out any modifier targets. |
| 106 | # ############################################################### |
| 107 | |
| 108 | # The 'showcommands' goal says to show the full command |
| 109 | # lines being executed, instead of a short message about |
| 110 | # the kind of operation being done. |
| 111 | SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS)) |
Ying Wang | bb1da5e | 2015-07-28 17:57:45 -0700 | [diff] [blame] | 112 | hide := $(if $(SHOW_COMMANDS),,@) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 113 | |
Ying Wang | a174261 | 2015-10-28 14:33:40 -0700 | [diff] [blame] | 114 | ################################################################ |
| 115 | # Tools needed in product configuration makefiles. |
| 116 | ################################################################ |
| 117 | NORMALIZE_PATH := build/tools/normalize_path.py |
| 118 | |
| 119 | # $(1): the paths to be normalized |
| 120 | define normalize-paths |
| 121 | $(if $(1),$(shell $(NORMALIZE_PATH) $(1))) |
| 122 | endef |
| 123 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 124 | # ############################################################### |
| 125 | # Set common values |
| 126 | # ############################################################### |
| 127 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 128 | # Set the extensions used for various packages |
| 129 | COMMON_PACKAGE_SUFFIX := .zip |
| 130 | COMMON_JAVA_PACKAGE_SUFFIX := .jar |
| 131 | COMMON_ANDROID_PACKAGE_SUFFIX := .apk |
| 132 | |
Yohann Roussel | f528e13 | 2015-03-13 12:08:26 +0100 | [diff] [blame] | 133 | ifdef TMPDIR |
| 134 | JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR) |
| 135 | else |
| 136 | JAVA_TMPDIR_ARG := |
| 137 | endif |
| 138 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 139 | # ############################################################### |
| 140 | # Include sub-configuration files |
| 141 | # ############################################################### |
| 142 | |
| 143 | # --------------------------------------------------------------- |
| 144 | # Try to include buildspec.mk, which will try to set stuff up. |
Brian Carlstrom | 1aeee8b | 2013-06-27 12:02:46 -0700 | [diff] [blame] | 145 | # 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] | 146 | # be used, and if that doesn't work, then the default is an |
| 147 | # arm build |
Ying Wang | d4495e9 | 2011-11-02 13:49:08 -0700 | [diff] [blame] | 148 | ifndef ANDROID_BUILDSPEC |
| 149 | ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk |
| 150 | endif |
| 151 | -include $(ANDROID_BUILDSPEC) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 152 | |
| 153 | # --------------------------------------------------------------- |
| 154 | # Define most of the global variables. These are the ones that |
| 155 | # are specific to the user's build configuration. |
| 156 | include $(BUILD_SYSTEM)/envsetup.mk |
| 157 | |
C. Sean Young | cf46998 | 2015-06-09 12:35:45 -0500 | [diff] [blame] | 158 | # Pruned directory options used when using findleaves.py |
| 159 | # See envsetup.mk for a description of SCAN_EXCLUDE_DIRS |
| 160 | FIND_LEAVES_EXCLUDES := $(addprefix --prune=, $(OUT_DIR) $(SCAN_EXCLUDE_DIRS) .repo .git) |
| 161 | |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 162 | # The build system exposes several variables for where to find the kernel |
| 163 | # headers: |
| 164 | # TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current |
| 165 | # device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers, |
| 166 | # e.g. device/samsung/tuna/kernel-headers. This directory is not |
| 167 | # explicitly set by anyone, the build system always adds this subdir. |
| 168 | # |
| 169 | # TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file |
| 170 | # to allow other directories to be included. This is useful if there's |
| 171 | # some common place where a few headers are being kept for a group |
| 172 | # of devices. For example, device/<vendor>/common/kernel-headers could |
| 173 | # contain some headers for several of <vendor>'s devices. |
| 174 | # |
| 175 | # TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance |
| 176 | # graph. This allows architecture products to provide headers for the |
| 177 | # devices using that architecture. For example, |
| 178 | # hardware/ti/omap4xxx/omap4.mk will specify |
| 179 | # PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4 |
| 180 | # specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers. |
| 181 | # The build system then combines all the values specified by all the |
| 182 | # PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance |
| 183 | # tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable. |
| 184 | # |
| 185 | # The layout of subdirs in any of the kernel-headers dir should mirror the |
| 186 | # layout of the kernel include/ directory. For example, |
| 187 | # device/samsung/tuna/kernel-headers/linux/, |
| 188 | # hardware/ti/omap4xxx/kernel-headers/media/, |
| 189 | # etc. |
| 190 | # |
| 191 | # NOTE: These directories MUST contain post-processed headers using the |
Alex Deymo | be0e7c9 | 2016-04-22 10:18:15 -0700 | [diff] [blame] | 192 | # bionic/libc/kernel/tools/clean_header.py tool. Additionally, the original |
| 193 | # kernel headers must also be checked in, but in a different subdirectory. By |
Dima Zavin | 06e758a | 2012-03-30 10:45:38 -0700 | [diff] [blame] | 194 | # convention, the originals should be checked into original-kernel-headers |
| 195 | # directory of the same parent dir. For example, |
| 196 | # device/samsung/tuna/kernel-headers <----- post-processed |
| 197 | # device/samsung/tuna/original-kernel-headers <----- originals |
| 198 | # |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 199 | TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers)) |
| 200 | |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 201 | define validate-kernel-headers |
| 202 | $(if $(firstword $(foreach hdr_dir,$(1),\ |
| 203 | $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\ |
| 204 | $(error Kernel header dirs must be end in kernel-headers: $(1))) |
| 205 | endef |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 206 | # also allow the board config to provide additional directories since |
| 207 | # there could be device/oem/base_hw and device/oem/derived_hw |
| 208 | # that both are valid devices but derived_hw needs to use kernel headers |
| 209 | # from base_hw. |
| 210 | TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS))) |
| 211 | TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS)) |
Dima Zavin | f926990 | 2012-03-16 09:57:11 -0700 | [diff] [blame] | 212 | $(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS)) |
| 213 | |
| 214 | # then add product-inherited includes, to allow for |
| 215 | # hardware/sivendor/chip/chip.mk to include their own headers |
| 216 | TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS))) |
| 217 | TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
| 218 | $(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS)) |
Dima Zavin | 4e16f96 | 2012-03-14 23:50:17 -0700 | [diff] [blame] | 219 | |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 220 | # Clean up/verify variables defined by the board config file. |
| 221 | TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) |
| 222 | TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI)) |
| 223 | ifeq ($(TARGET_CPU_ABI),) |
| 224 | $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk)) |
| 225 | endif |
David 'Digit' Turner | 2edfb71 | 2009-11-06 15:12:00 -0800 | [diff] [blame] | 226 | TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2)) |
Patrick Scott | 87c8657 | 2009-06-23 15:25:06 -0400 | [diff] [blame] | 227 | |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 228 | # Commands to generate .toc file common to ELF .so files. |
| 229 | define _gen_toc_command_for_elf |
Shinichiro Hamaji | f0972f7 | 2015-11-05 12:51:08 +0900 | [diff] [blame] | 230 | $(hide) ($($(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)READELF) -d $(1) | grep SONAME || echo "No SONAME for $1") > $(2) |
Shinichiro Hamaji | 2b0caa3 | 2016-01-06 15:13:25 +0900 | [diff] [blame] | 231 | $(hide) $($(PRIVATE_2ND_ARCH_VAR_PREFIX)$(PRIVATE_PREFIX)READELF) --dyn-syms $(1) | awk '{$$2=""; $$3=""; print}' >> $(2) |
Shinichiro Hamaji | 0e7587a | 2015-10-09 14:36:04 +0900 | [diff] [blame] | 232 | endef |
| 233 | |
| 234 | # Commands to generate .toc file from Darwin dynamic library. |
| 235 | define _gen_toc_command_for_macho |
| 236 | $(hide) otool -l $(1) | grep LC_ID_DYLIB -A 5 > $(2) |
| 237 | $(hide) nm -gP $(1) | cut -f1-2 -d" " | grep -v U$$ >> $(2) |
| 238 | endef |
| 239 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 240 | combo_target := HOST_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 241 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 242 | include $(BUILD_SYSTEM)/combo/select.mk |
| 243 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 244 | # Load the 2nd host arch if it's needed. |
| 245 | ifdef HOST_2ND_ARCH |
| 246 | combo_target := HOST_ |
| 247 | combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX) |
| 248 | include $(BUILD_SYSTEM)/combo/select.mk |
| 249 | endif |
| 250 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 251 | # Load the windows cross compiler under Linux |
| 252 | ifdef HOST_CROSS_OS |
| 253 | combo_target := HOST_CROSS_ |
| 254 | combo_2nd_arch_prefix := |
| 255 | include $(BUILD_SYSTEM)/combo/select.mk |
Dan Willemsen | 9ecbf83 | 2016-02-05 16:20:19 -0800 | [diff] [blame] | 256 | |
| 257 | ifdef HOST_CROSS_2ND_ARCH |
| 258 | combo_target := HOST_CROSS_ |
| 259 | combo_2nd_arch_prefix := $(HOST_CROSS_2ND_ARCH_VAR_PREFIX) |
| 260 | include $(BUILD_SYSTEM)/combo/select.mk |
| 261 | endif |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 262 | endif |
| 263 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 264 | # on windows, the tools have .exe at the end, and we depend on the |
| 265 | # host config stuff being done first |
| 266 | |
| 267 | combo_target := TARGET_ |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 268 | combo_2nd_arch_prefix := |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 269 | include $(BUILD_SYSTEM)/combo/select.mk |
| 270 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 271 | # Load the 2nd target arch if it's needed. |
| 272 | ifdef TARGET_2ND_ARCH |
| 273 | combo_target := TARGET_ |
| 274 | combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX) |
| 275 | include $(BUILD_SYSTEM)/combo/select.mk |
| 276 | endif |
| 277 | |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 278 | include $(BUILD_SYSTEM)/ccache.mk |
Shinichiro Hamaji | ee482fd | 2015-08-17 17:38:24 +0900 | [diff] [blame] | 279 | include $(BUILD_SYSTEM)/goma.mk |
Ying Wang | c671a7c | 2015-07-20 18:40:18 -0700 | [diff] [blame] | 280 | |
Colin Cross | a3339e9 | 2014-04-30 18:09:13 -0700 | [diff] [blame] | 281 | ifdef TARGET_PREFER_32_BIT |
| 282 | TARGET_PREFER_32_BIT_APPS := true |
| 283 | TARGET_PREFER_32_BIT_EXECUTABLES := true |
| 284 | endif |
| 285 | |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 286 | ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS)) |
| 287 | TARGET_SUPPORTS_32_BIT_APPS := true |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 288 | endif |
| 289 | |
| 290 | # "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are |
| 291 | # comma separated lists of the 32 and 64 bit ABIs (in order of |
| 292 | # preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT |
| 293 | # are defined by the board config, we use them. Else, we construct |
| 294 | # these lists based on whether TARGET_IS_64_BIT is set. |
| 295 | # |
| 296 | # Note that this assumes that the 2ND_CPU_ABI for a 64 bit target |
| 297 | # 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] | 298 | # be overriden in the board configuration. |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 299 | ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT)) |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 300 | ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS)) |
Narayan Kamath | 7303ebd | 2014-04-07 11:01:54 +0100 | [diff] [blame] | 301 | TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 302 | endif |
| 303 | endif |
| 304 | |
| 305 | ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT)) |
| 306 | ifneq (true,$(TARGET_IS_64_BIT)) |
| 307 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2) |
| 308 | else |
Colin Cross | 2a4f0ff | 2014-04-30 18:18:02 -0700 | [diff] [blame] | 309 | ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS)) |
| 310 | # For a 64 bit target, assume that the 2ND_CPU_ABI |
| 311 | # is a 32 bit ABI. |
| 312 | TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2) |
| 313 | endif |
| 314 | endif |
| 315 | endif |
| 316 | |
| 317 | # "ro.product.cpu.abilist" is a comma separated list of ABIs (in order |
| 318 | # of preference) that the target supports. If a TARGET_CPU_ABI_LIST |
| 319 | # is specified by the board configuration, we use that. If not, we |
| 320 | # build a list out of the TARGET_CPU_ABIs specified by the config. |
| 321 | ifeq (,$(TARGET_CPU_ABI_LIST)) |
| 322 | ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true) |
| 323 | TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT) |
| 324 | else |
| 325 | 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] | 326 | endif |
| 327 | endif |
| 328 | |
| 329 | # Strip whitespace from the ABI list string. |
| 330 | TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST))) |
| 331 | TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT))) |
| 332 | TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))) |
| 333 | |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 334 | # GCC version selection |
| 335 | TARGET_GCC_VERSION := 4.9 |
| 336 | ifdef TARGET_2ND_ARCH |
| 337 | 2ND_TARGET_GCC_VERSION := 4.9 |
| 338 | endif |
| 339 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 340 | # Normalize WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK |
| 341 | ifeq ($(strip $(WITH_STATIC_ANALYZER)),0) |
| 342 | WITH_STATIC_ANALYZER := |
| 343 | endif |
| 344 | ifeq ($(strip $(WITH_SYNTAX_CHECK)),0) |
| 345 | WITH_SYNTAX_CHECK := |
| 346 | endif |
| 347 | |
Chih-Hung Hsieh | 765c1ea | 2016-02-02 11:30:39 -0800 | [diff] [blame] | 348 | # define clang/llvm versions and base directory. |
| 349 | include $(BUILD_SYSTEM)/clang/versions.mk |
| 350 | |
Chih-Hung Hsieh | a9a55c7 | 2016-03-31 16:30:23 -0700 | [diff] [blame] | 351 | # Unset WITH_TIDY_ONLY if global WITH_TIDY_ONLY is not true nor 1. |
| 352 | ifeq (,$(filter 1 true,$(WITH_TIDY_ONLY))) |
| 353 | WITH_TIDY_ONLY := |
| 354 | endif |
| 355 | |
| 356 | PATH_TO_CLANG_TIDY := \ |
| 357 | $(LLVM_PREBUILTS_BASE)/$(BUILD_OS)-x86/$(LLVM_PREBUILTS_VERSION)/bin/clang-tidy |
| 358 | ifeq ($(wildcard $(PATH_TO_CLANG_TIDY)),) |
| 359 | ifneq (,$(filter 1 true,$(WITH_TIDY))) |
| 360 | $(warning *** Disable WITH_TIDY because $(PATH_TO_CLANG_TIDY) does not exist) |
| 361 | endif |
| 362 | PATH_TO_CLANG_TIDY := |
| 363 | endif |
| 364 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 365 | # Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found |
Chih-Hung Hsieh | 765c1ea | 2016-02-02 11:30:39 -0800 | [diff] [blame] | 366 | SYNTAX_TOOLS_PREFIX := \ |
| 367 | $(LLVM_PREBUILTS_BASE)/$(BUILD_OS)-x86/$(LLVM_PREBUILTS_VERSION)/tools/scan-build/libexec |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 368 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 369 | ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),) |
| 370 | $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist) |
| 371 | WITH_STATIC_ANALYZER := |
| 372 | endif |
| 373 | endif |
Andrew Hsieh | e7c2d14 | 2013-08-27 17:55:46 +0800 | [diff] [blame] | 374 | |
Andrew Hsieh | 906cb78 | 2013-09-10 17:37:14 +0800 | [diff] [blame] | 375 | # WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK |
| 376 | ifneq ($(strip $(WITH_STATIC_ANALYZER)),) |
| 377 | ifneq ($(strip $(WITH_SYNTAX_CHECK)),) |
| 378 | $(warning *** Disable WITH_SYNTAX_CHECK in the presence of static analyzer WITH_STATIC_ANALYZER) |
| 379 | WITH_SYNTAX_CHECK := |
| 380 | endif |
| 381 | endif |
| 382 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 383 | # Pick a Java compiler. |
| 384 | include $(BUILD_SYSTEM)/combo/javac.mk |
| 385 | |
| 386 | # --------------------------------------------------------------- |
| 387 | # Check that the configuration is current. We check that |
| 388 | # BUILD_ENV_SEQUENCE_NUMBER is current against this value. |
| 389 | # Don't fail if we're called from envsetup, so they have a |
| 390 | # chance to update their environment. |
| 391 | |
| 392 | ifeq (,$(strip $(CALLED_FROM_SETUP))) |
| 393 | ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER))) |
| 394 | ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)) |
| 395 | $(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.) |
| 396 | $(info *** If you use envsetup/lunch/choosecombo:) |
| 397 | $(info *** - Re-execute envsetup (". envsetup.sh")) |
| 398 | $(info *** - Re-run lunch or choosecombo) |
| 399 | $(info *** If you use buildspec.mk:) |
| 400 | $(info *** - Look at buildspec.mk.default to see what has changed) |
| 401 | $(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)") |
| 402 | $(error bailing..) |
| 403 | endif |
| 404 | endif |
| 405 | endif |
| 406 | |
Colin Cross | 6b66fcf | 2016-01-26 15:59:50 -0800 | [diff] [blame] | 407 | # Set up PDK so we can use TARGET_BUILD_PDK to select prebuilt tools below |
| 408 | .PHONY: pdk fusion |
| 409 | pdk fusion: $(DEFAULT_GOAL) |
| 410 | |
| 411 | # What to build: |
| 412 | # pdk fusion if: |
| 413 | # 1) PDK_FUSION_PLATFORM_ZIP is passed in from the environment |
| 414 | # or |
| 415 | # 2) the platform.zip exists in the default location |
| 416 | # or |
| 417 | # 3) fusion is a command line build goal, |
| 418 | # PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal? |
| 419 | # otherwise pdk only if: |
| 420 | # 1) pdk is a command line build goal |
| 421 | # or |
| 422 | # 2) TARGET_BUILD_PDK is passed in from the environment |
| 423 | |
| 424 | # if PDK_FUSION_PLATFORM_ZIP is specified, do not override. |
| 425 | ifndef PDK_FUSION_PLATFORM_ZIP |
| 426 | # Most PDK project paths should be using vendor/pdk/TARGET_DEVICE |
| 427 | # but some legacy ones (e.g. mini_armv7a_neon generic PDK) were setup |
| 428 | # with vendor/pdk/TARGET_PRODUCT. |
| 429 | _pdk_fusion_default_platform_zip = $(strip \ |
| 430 | $(wildcard vendor/pdk/$(TARGET_DEVICE)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 431 | $(wildcard vendor/pdk/$(TARGET_DEVICE)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 432 | $(wildcard vendor/pdk/$(TARGET_PRODUCT)/$(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)/platform/platform.zip) \ |
| 433 | $(wildcard vendor/pdk/$(TARGET_PRODUCT)/$(patsubst aosp_%,full_%,$(TARGET_PRODUCT))-$(TARGET_BUILD_VARIANT)/platform/platform.zip)) |
| 434 | ifneq (,$(_pdk_fusion_default_platform_zip)) |
| 435 | PDK_FUSION_PLATFORM_ZIP := $(word 1, $(_pdk_fusion_default_platform_zip)) |
| 436 | TARGET_BUILD_PDK := true |
| 437 | endif # _pdk_fusion_default_platform_zip |
| 438 | endif # !PDK_FUSION_PLATFORM_ZIP |
| 439 | |
| 440 | ifneq (,$(filter pdk fusion, $(MAKECMDGOALS))) |
| 441 | TARGET_BUILD_PDK := true |
| 442 | ifneq (,$(filter fusion, $(MAKECMDGOALS))) |
| 443 | ifndef PDK_FUSION_PLATFORM_ZIP |
| 444 | $(error Specify PDK_FUSION_PLATFORM_ZIP to do a PDK fusion.) |
| 445 | endif |
| 446 | endif # fusion |
| 447 | endif # pdk or fusion |
| 448 | |
| 449 | ifdef PDK_FUSION_PLATFORM_ZIP |
| 450 | TARGET_BUILD_PDK := true |
| 451 | ifeq (,$(wildcard $(PDK_FUSION_PLATFORM_ZIP))) |
| 452 | $(error Cannot find file $(PDK_FUSION_PLATFORM_ZIP).) |
| 453 | endif |
| 454 | endif |
| 455 | |
Ying Wang | fbc5b9f | 2016-03-11 10:32:01 -0800 | [diff] [blame] | 456 | BUILD_PLATFORM_ZIP := $(filter platform platform-java,$(MAKECMDGOALS)) |
| 457 | |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 458 | # |
| 459 | # Tools that are prebuilts for TARGET_BUILD_APPS |
| 460 | # |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 461 | prebuilt_sdk_tools := prebuilts/sdk/tools |
| 462 | prebuilt_sdk_tools_bin := $(prebuilt_sdk_tools)/$(HOST_OS)/bin |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 463 | |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 464 | AIDL := $(HOST_OUT_EXECUTABLES)/aidl |
| 465 | AAPT := $(HOST_OUT_EXECUTABLES)/aapt |
| 466 | ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign |
| 467 | SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
Alex Klyubin | 9667b18 | 2015-12-10 13:38:50 -0800 | [diff] [blame] | 468 | SIGNAPK_JNI_LIBRARY_PATH := $(HOST_OUT_SHARED_LIBRARIES) |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 469 | LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc |
| 470 | BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat |
| 471 | |
| 472 | DX := $(HOST_OUT_EXECUTABLES)/dx |
| 473 | MAINDEXCLASSES := $(HOST_OUT_EXECUTABLES)/mainDexClasses |
| 474 | |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 475 | # Always use prebuilts for ckati and makeparallel |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 476 | prebuilt_build_tools := prebuilts/build-tools |
| 477 | prebuilt_build_tools_bin := $(prebuilt_build_tools)/$(HOST_PREBUILT_TAG)/bin |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 478 | ACP := $(prebuilt_build_tools_bin)/acp |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 479 | CKATI := $(prebuilt_build_tools_bin)/ckati |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 480 | IJAR := $(prebuilt_build_tools_bin)/ijar |
Colin Cross | facdca1 | 2016-04-19 15:32:22 -0700 | [diff] [blame] | 481 | MAKEPARALLEL := $(prebuilt_build_tools_bin)/makeparallel |
Dan Willemsen | 7c2d228 | 2016-06-06 14:44:00 -0700 | [diff] [blame] | 482 | ZIPTIME := $(prebuilt_build_tools_bin)/ziptime |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 483 | |
Colin Cross | d3f3ab7 | 2016-01-20 16:08:49 -0800 | [diff] [blame] | 484 | USE_PREBUILT_SDK_TOOLS_IN_PLACE := true |
| 485 | |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 486 | # Override the definitions above for unbundled and PDK builds |
| 487 | ifneq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 488 | AIDL := $(prebuilt_sdk_tools_bin)/aidl |
| 489 | AAPT := $(prebuilt_sdk_tools_bin)/aapt |
| 490 | ZIPALIGN := $(prebuilt_sdk_tools_bin)/zipalign |
| 491 | SIGNAPK_JAR := $(prebuilt_sdk_tools)/lib/signapk$(COMMON_JAVA_PACKAGE_SUFFIX) |
Alex Klyubin | 9667b18 | 2015-12-10 13:38:50 -0800 | [diff] [blame] | 492 | # Use 64-bit libraries unconditionally because 32-bit JVMs are no longer supported |
| 493 | SIGNAPK_JNI_LIBRARY_PATH := $(prebuilt_sdk_tools)/$(HOST_OS)/lib64 |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 494 | |
| 495 | DX := $(prebuilt_sdk_tools)/dx |
| 496 | MAINDEXCLASSES := $(prebuilt_sdk_tools)/mainDexClasses |
| 497 | |
| 498 | # Don't use prebuilts in PDK |
| 499 | ifneq ($(TARGET_BUILD_PDK),true) |
| 500 | LLVM_RS_CC := $(prebuilt_sdk_tools_bin)/llvm-rs-cc |
| 501 | BCC_COMPAT := $(prebuilt_sdk_tools_bin)/bcc_compat |
| 502 | endif # TARGET_BUILD_PDK |
| 503 | endif # TARGET_BUILD_APPS || TARGET_BUILD_PDK |
Dan Willemsen | 1487f31 | 2016-03-08 11:12:40 -0800 | [diff] [blame] | 504 | prebuilt_sdk_tools := |
| 505 | prebuilt_sdk_tools_bin := |
Colin Cross | fd08247 | 2015-12-02 16:33:04 -0800 | [diff] [blame] | 506 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 507 | |
| 508 | # --------------------------------------------------------------- |
| 509 | # Generic tools. |
Yohann Roussel | abee3a9 | 2015-03-10 16:50:55 +0100 | [diff] [blame] | 510 | JACK := $(HOST_OUT_EXECUTABLES)/jack |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 511 | |
Ying Wang | 6374153 | 2014-05-16 09:37:23 -0700 | [diff] [blame] | 512 | 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] | 513 | # The default PKGDATADIR built in the prebuilt bison is a relative path |
| 514 | # external/bison/data. |
| 515 | # To run bison from elsewhere you need to set up enviromental variable |
| 516 | # BISON_PKGDATADIR. |
| 517 | BISON_PKGDATADIR := $(PWD)/external/bison/data |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 518 | BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 519 | YACC := $(BISON) -d |
Shinichiro Hamaji | b708bc5 | 2016-04-05 20:12:48 +0900 | [diff] [blame] | 520 | BISON_DATA := $(wildcard external/bison/data/* external/bison/data/*/*) |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 521 | |
Ying Wang | 7b913ce | 2014-06-05 19:05:47 -0700 | [diff] [blame] | 522 | YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm |
| 523 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 524 | DOXYGEN:= doxygen |
Christopher Wiley | 2df75d1 | 2015-10-14 17:27:24 -0700 | [diff] [blame] | 525 | AIDL_CPP := $(HOST_OUT_EXECUTABLES)/aidl-cpp$(HOST_EXECUTABLE_SUFFIX) |
Steve Fung | cb2e67f | 2015-09-24 01:40:52 -0700 | [diff] [blame] | 526 | ifeq ($(HOST_OS),linux) |
| 527 | BREAKPAD_DUMP_SYMS := $(HOST_OUT_EXECUTABLES)/dump_syms |
| 528 | else |
| 529 | # For non-supported hosts, do not generate breakpad symbols. |
| 530 | BREAKPAD_GENERATE_SYMBOLS := false |
| 531 | endif |
Wink Saville | e789083 | 2010-11-05 11:28:51 -0700 | [diff] [blame] | 532 | PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX) |
Shinichiro Hamaji | a3184dc | 2016-04-05 17:34:51 +0900 | [diff] [blame] | 533 | NANOPB_SRCS := external/nanopb-c/generator/protoc-gen-nanopb \ |
| 534 | $(wildcard external/nanopb-c/generator/*.py \ |
| 535 | external/nanopb-c/generator/google/*.py \ |
| 536 | external/nanopb-c/generator/proto/*.py) |
Christopher Wiley | bc2be46 | 2015-07-29 17:14:24 -0700 | [diff] [blame] | 537 | DBUS_GENERATOR := $(HOST_OUT_EXECUTABLES)/dbus-binding-generator |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 538 | MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX) |
Doug Zongker | 8b70e8c | 2009-05-27 09:14:25 -0700 | [diff] [blame] | 539 | MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 540 | ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG))) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 541 | MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX) |
Bjorn Andersson | 612e2cd | 2012-11-25 16:53:44 -0800 | [diff] [blame] | 542 | else |
| 543 | MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG) |
| 544 | endif |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 545 | ifeq (,$(strip $(BOARD_CUSTOM_BPTTOOL))) |
| 546 | BPTTOOL := $(HOST_OUT_EXECUTABLES)/bpttool$(HOST_EXECUTABLE_SUFFIX) |
| 547 | else |
| 548 | BPTTOOL := $(BOARD_CUSTOM_BPTTOOL) |
| 549 | endif |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 550 | ifeq (,$(strip $(BOARD_CUSTOM_BVBTOOL))) |
| 551 | BVBTOOL := $(HOST_OUT_EXECUTABLES)/bvbtool$(HOST_EXECUTABLE_SUFFIX) |
| 552 | else |
| 553 | BVBTOOL := $(BOARD_CUSTOM_BVBTOOL) |
| 554 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 555 | APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX) |
| 556 | FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX) |
Colin Cross | 9dd4ba8 | 2010-08-03 14:43:15 -0700 | [diff] [blame] | 557 | MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 542903a | 2010-11-17 15:40:38 -0800 | [diff] [blame] | 558 | MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh |
Mohamad Ayyash | 6894695 | 2015-03-03 12:30:37 -0800 | [diff] [blame] | 559 | MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX) |
| 560 | MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh |
JP Abgrall | 5bfed5a | 2014-06-16 14:17:40 -0700 | [diff] [blame] | 561 | MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX) |
| 562 | MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 563 | SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX) |
Mohamad Ayyash | 353265b | 2015-06-24 15:42:19 -0700 | [diff] [blame] | 564 | IMG2SIMG := $(HOST_OUT_EXECUTABLES)/img2simg$(HOST_EXECUTABLE_SUFFIX) |
Ying Wang | 69e9b4d | 2012-11-26 18:10:23 -0800 | [diff] [blame] | 565 | E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 566 | MKTARBALL := build/tools/mktarball.sh |
Colin Cross | 0a7b2c5 | 2010-05-07 02:23:59 -0700 | [diff] [blame] | 567 | TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX) |
Steve Howard | ef5c640 | 2010-05-03 15:01:38 -0700 | [diff] [blame] | 568 | JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar |
Yohann Roussel | 2809666 | 2015-02-02 12:18:20 +0100 | [diff] [blame] | 569 | |
Yohann Roussel | e163b4e | 2015-04-09 10:10:21 +0000 | [diff] [blame] | 570 | ifneq ($(ANDROID_JACK_EXTRA_ARGS),) |
Shinichiro Hamaji | 4eaeef8 | 2016-04-07 18:56:42 +0900 | [diff] [blame] | 571 | JACK_DEFAULT_ARGS := |
Yohann Roussel | e163b4e | 2015-04-09 10:10:21 +0000 | [diff] [blame] | 572 | DEFAULT_JACK_EXTRA_ARGS := $(ANDROID_JACK_EXTRA_ARGS) |
| 573 | else |
Shinichiro Hamaji | 4eaeef8 | 2016-04-07 18:56:42 +0900 | [diff] [blame] | 574 | JACK_DEFAULT_ARGS := $(BUILD_SYSTEM)/jack-default.args |
| 575 | DEFAULT_JACK_EXTRA_ARGS := @$(JACK_DEFAULT_ARGS) |
Yohann Roussel | e163b4e | 2015-04-09 10:10:21 +0000 | [diff] [blame] | 576 | endif |
Yohann Roussel | f528e13 | 2015-03-13 12:08:26 +0100 | [diff] [blame] | 577 | |
Joe Onorato | 2daa2b3 | 2009-08-30 13:39:24 -0700 | [diff] [blame] | 578 | PROGUARD := external/proguard/bin/proguard.sh |
Doug Zongker | 9bd4962 | 2009-11-30 14:28:59 -0800 | [diff] [blame] | 579 | JAVATAGS := build/tools/java-event-log-tags.py |
Shinichiro Hamaji | d3ce14c | 2016-03-29 03:29:21 +0900 | [diff] [blame] | 580 | MERGETAGS := build/tools/merge-event-log-tags.py |
Shinichiro Hamaji | 3deb87d | 2016-04-19 18:41:27 +0900 | [diff] [blame] | 581 | BUILD_IMAGE_SRCS := $(wildcard build/tools/releasetools/*.py) |
Colin Cross | 8a30f72 | 2014-04-28 16:27:32 -0700 | [diff] [blame] | 582 | APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg |
| 583 | VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer |
Colin Cross | 477cf2b | 2014-04-16 18:49:56 -0700 | [diff] [blame] | 584 | BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree |
Geremy Condra | 740b663 | 2014-07-08 20:07:41 -0700 | [diff] [blame] | 585 | BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer |
David Riley | 17be3d3 | 2015-03-03 08:54:11 -0800 | [diff] [blame] | 586 | FUTILITY := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/futility/futility |
| 587 | VBOOT_SIGNER := prebuilts/misc/scripts/vboot_signer/vboot_signer.sh |
Sami Tolvanen | f99b531 | 2015-05-20 07:30:57 +0100 | [diff] [blame] | 588 | FEC := $(HOST_OUT_EXECUTABLES)/fec |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 589 | |
Shinichiro Hamaji | f972a4a | 2015-12-09 18:06:20 +0900 | [diff] [blame] | 590 | DEXDUMP := $(HOST_OUT_EXECUTABLES)/dexdump2$(BUILD_EXECUTABLE_SUFFIX) |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 591 | |
Dmitriy Ivanov | 4c2d1a6 | 2015-04-20 16:59:05 -0700 | [diff] [blame] | 592 | # relocation packer |
| 593 | RELOCATION_PACKER := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/relocation_packer/relocation_packer |
| 594 | |
Yuncheol Heo | 623d706 | 2014-05-20 17:04:16 +0900 | [diff] [blame] | 595 | FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin |
| 596 | FINDBUGS := $(FINDBUGS_DIR)/findbugs |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 597 | EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 598 | |
Ying Wang | dc7fee9 | 2014-02-05 18:24:45 -0800 | [diff] [blame] | 599 | # Tool to merge AndroidManifest.xmls |
| 600 | ANDROID_MANIFEST_MERGER := java -classpath prebuilts/devtools/tools/lib/manifest-merger.jar com.android.manifmerger.Main merge |
| 601 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 602 | COLUMN:= column |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 603 | |
Ying Wang | 7fcd2f9 | 2015-11-02 15:56:58 -0800 | [diff] [blame] | 604 | # We may not have the right JAVA_HOME/PATH set up yet when this is run from envsetup.sh. |
| 605 | ifneq ($(CALLED_FROM_SETUP),true) |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 606 | HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh) |
Narayan Kamath | ab2e2e7 | 2013-12-05 15:20:41 +0000 | [diff] [blame] | 607 | |
| 608 | ifneq ($(HOST_JDK_TOOLS_JAR),) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 609 | ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),) |
Colin Cross | 112753c | 2015-10-23 14:33:51 -0700 | [diff] [blame] | 610 | $(error Error: could not find jdk tools.jar at $(HOST_JDK_TOOLS_JAR), please check if your JDK was installed correctly) |
Ying Wang | ec5e729 | 2010-04-26 18:36:52 -0700 | [diff] [blame] | 611 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 612 | endif |
| 613 | |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 614 | # Is the host JDK 64-bit version? |
| 615 | HOST_JDK_IS_64BIT_VERSION := |
| 616 | ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),) |
| 617 | HOST_JDK_IS_64BIT_VERSION := true |
| 618 | endif |
Ying Wang | 7fcd2f9 | 2015-11-02 15:56:58 -0800 | [diff] [blame] | 619 | endif # CALLED_FROM_SETUP not true |
Ying Wang | 053dccb | 2011-05-24 15:46:15 -0700 | [diff] [blame] | 620 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 621 | # It's called md5 on Mac OS and md5sum on Linux |
| 622 | ifeq ($(HOST_OS),darwin) |
| 623 | MD5SUM:=md5 -q |
| 624 | else |
| 625 | MD5SUM:=md5sum |
| 626 | endif |
| 627 | |
Joe Onorato | 2a6e052 | 2011-04-08 17:32:52 -0700 | [diff] [blame] | 628 | APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR) |
| 629 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 630 | APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 631 | APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)" |
| 632 | |
Ying Wang | 3c21fe5 | 2011-10-04 10:50:08 -0700 | [diff] [blame] | 633 | # The default key if not set as LOCAL_CERTIFICATE |
| 634 | ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE |
| 635 | DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE) |
| 636 | else |
| 637 | DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey |
| 638 | endif |
| 639 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 640 | # ############################################################### |
| 641 | # Set up final options. |
| 642 | # ############################################################### |
| 643 | |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 644 | GLOBAL_CFLAGS_NO_OVERRIDE := \ |
| 645 | -Werror=int-to-pointer-cast \ |
| 646 | -Werror=pointer-to-int-cast \ |
| 647 | |
| 648 | GLOBAL_CLANG_CFLAGS_NO_OVERRIDE := \ |
| 649 | -Werror=address-of-temporary \ |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 650 | -Werror=return-type \ |
Pirama Arumuga Nainar | 1679c36 | 2016-06-28 10:54:33 -0700 | [diff] [blame] | 651 | # Bug: http://b/29823425 Disable -Wnull-dereference until the new cases |
| 652 | # detected by this warning in Clang r271374 are fixed. |
| 653 | #-Werror=null-dereference \ |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 654 | |
| 655 | GLOBAL_CPPFLAGS_NO_OVERRIDE := |
| 656 | |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 657 | # We run gcc/clang with PWD=/proc/self/cwd to remove the $TOP |
| 658 | # from the debug output. That way two builds in two different |
| 659 | # directories will create the same output. |
| 660 | # /proc doesn't exist on Darwin. |
| 661 | ifeq ($(HOST_OS),linux) |
| 662 | RELATIVE_PWD := PWD=/proc/self/cwd |
Dan Willemsen | 93b8a12 | 2015-12-16 13:10:35 -0800 | [diff] [blame] | 663 | else |
| 664 | RELATIVE_PWD := |
| 665 | endif |
| 666 | |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 667 | HOST_GLOBAL_LD_DIRS := -L$(HOST_OUT_INTERMEDIATE_LIBRARIES) |
| 668 | TARGET_GLOBAL_LD_DIRS := -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 669 | |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 670 | HOST_PROJECT_INCLUDES := |
| 671 | HOST_PROJECT_SYSTEM_INCLUDES := $(HOST_OUT_HEADERS) |
| 672 | TARGET_PROJECT_INCLUDES := |
| 673 | TARGET_PROJECT_SYSTEM_INCLUDES := $(TARGET_OUT_HEADERS) \ |
Dima Zavin | 8e4042c | 2012-03-30 10:24:31 -0700 | [diff] [blame] | 674 | $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \ |
| 675 | $(TARGET_PRODUCT_KERNEL_HEADERS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 676 | |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 677 | ifdef TARGET_2ND_ARCH |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 678 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LD_DIRS := -L$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES) |
Ying Wang | 9fb3526 | 2014-02-21 16:17:05 -0800 | [diff] [blame] | 679 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 680 | $(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_SYSTEM_INCLUDES := $(TARGET_PROJECT_SYSTEM_INCLUDES) |
Ying Wang | e1d44c3 | 2013-12-27 11:09:36 -0800 | [diff] [blame] | 681 | endif |
| 682 | |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 683 | ifdef HOST_2ND_ARCH |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 684 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LD_DIRS := -L$($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 685 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_INCLUDES := $(HOST_PROJECT_INCLUDES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 686 | $(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_SYSTEM_INCLUDES := $(HOST_PROJECT_SYSTEM_INCLUDES) |
Ying Wang | 6feb6d5 | 2014-04-17 10:03:35 -0700 | [diff] [blame] | 687 | endif |
| 688 | |
Dan Willemsen | 057aaea | 2015-08-14 12:59:50 -0700 | [diff] [blame] | 689 | ifdef HOST_CROSS_OS |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 690 | HOST_CROSS_GLOBAL_LD_DIRS := -L$(HOST_CROSS_OUT_INTERMEDIATE_LIBRARIES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 691 | HOST_CROSS_PROJECT_INCLUDES := |
| 692 | HOST_CROSS_PROJECT_SYSTEM_INCLUDES := $(HOST_CROSS_OUT_HEADERS) |
Dan Willemsen | 9ecbf83 | 2016-02-05 16:20:19 -0800 | [diff] [blame] | 693 | |
| 694 | ifdef HOST_CROSS_2ND_ARCH |
Dan Willemsen | 056609c | 2016-05-16 22:07:31 -0700 | [diff] [blame] | 695 | $(HOST_CROSS_2ND_ARCH_VAR_PREFIX)HOST_CROSS_GLOBAL_LD_DIRS := -L$($(HOST_CROSS_2ND_ARCH_VAR_PREFIX)HOST_CROSS_OUT_INTERMEDIATE_LIBRARIES) |
Colin Cross | e25fd79 | 2016-07-19 13:19:21 -0700 | [diff] [blame] | 696 | $(HOST_CROSS_2ND_ARCH_VAR_PREFIX)HOST_CROSS_PROJECT_INCLUDES:= $(HOST_CROSS_PROJECT_INCLUDES) |
Colin Cross | 23ba612 | 2016-07-20 12:22:57 -0700 | [diff] [blame] | 697 | $(HOST_CROSS_2ND_ARCH_VAR_PREFIX)HOST_CROSS_PROJECT_SYSTEM_INCLUDES:= $(HOST_CROSS_PROJECT_SYSTEM_INCLUDES) |
Dan Willemsen | de6494b | 2015-12-16 15:04:51 -0800 | [diff] [blame] | 698 | endif |
| 699 | endif |
| 700 | |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 701 | # allow overriding default Java libraries on a per-target basis |
| 702 | ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),) |
Piotr Jastrzebski | 052a00f | 2015-02-17 16:55:52 +0000 | [diff] [blame] | 703 | TARGET_DEFAULT_JAVA_LIBRARIES := core-oj core-libart core-junit ext framework okhttp |
Mike Lockwood | c73018c | 2013-08-06 16:07:13 -0700 | [diff] [blame] | 704 | endif |
| 705 | |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 706 | # Flags for DEX2OAT |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 707 | first_non_empty_of_three = $(if $(1),$(1),$(if $(2),$(2),$(3))) |
Ian Rogers | 5d186ae | 2014-04-18 15:23:40 -0700 | [diff] [blame] | 708 | DEX2OAT_TARGET_ARCH := $(TARGET_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 709 | DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_CPU_VARIANT),$(TARGET_ARCH_VARIANT),default) |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 710 | DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | 8c7e74e | 2014-03-20 12:13:10 -0700 | [diff] [blame] | 711 | |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 712 | ifdef TARGET_2ND_ARCH |
| 713 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH) |
Andreas Gampe | 847b00b | 2015-10-15 20:43:29 -0700 | [diff] [blame] | 714 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(call first_non_empty_of_three,$(TARGET_2ND_CPU_VARIANT),$(TARGET_2ND_ARCH_VARIANT),default) |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 715 | $(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default |
Ying Wang | b9aa5d4 | 2014-05-13 13:57:28 -0700 | [diff] [blame] | 716 | endif |
| 717 | |
Ying Wang | 1f98283 | 2014-02-06 18:08:44 -0800 | [diff] [blame] | 718 | # define clang/llvm tools and global flags |
| 719 | include $(BUILD_SYSTEM)/clang/config.mk |
yroussel | 1319005 | 2012-01-12 16:09:06 +0100 | [diff] [blame] | 720 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 721 | # ############################################################### |
| 722 | # Collect a list of the SDK versions that we could compile against |
| 723 | # For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE) |
| 724 | # ############################################################### |
| 725 | |
Ying Wang | 9978faf | 2011-11-29 10:24:27 -0800 | [diff] [blame] | 726 | HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk |
Ying Wang | b50bd7f | 2011-11-29 11:20:16 -0800 | [diff] [blame] | 727 | HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 728 | |
Ying Wang | 589e8c5 | 2015-05-19 16:03:57 -0700 | [diff] [blame] | 729 | # The path where app can reference the support library resources. |
| 730 | ifdef TARGET_BUILD_APPS |
| 731 | SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support |
| 732 | else |
| 733 | SUPPORT_LIBRARY_ROOT := frameworks/support |
| 734 | endif |
| 735 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 736 | # Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N. |
| 737 | # The 'current' version is whatever this source tree is. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 738 | # |
| 739 | # sgrax is the opposite of xargs. It takes the list of args and puts them |
| 740 | # on each line for sort to process. |
| 741 | # 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] | 742 | |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 743 | # Numerically sort a list of numbers |
| 744 | # $(1): the list of numbers to be sorted |
| 745 | define numerically_sort |
| 746 | $(shell function sgrax() { \ |
| 747 | while [ -n "$$1" ] ; do echo $$1 ; shift ; done \ |
| 748 | } ; \ |
| 749 | ( sgrax $(1) | sort -g ) ) |
| 750 | endef |
| 751 | |
Ying Wang | a1ff629 | 2012-05-10 18:07:33 -0700 | [diff] [blame] | 752 | TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\ |
Ying Wang | 0f6f4ca | 2010-06-09 10:26:26 -0700 | [diff] [blame] | 753 | $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \ |
Ying Wang | 2f7b92c | 2014-07-21 13:44:06 -0700 | [diff] [blame] | 754 | $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar))) |
| 755 | |
| 756 | # We don't have prebuilt system_current SDK yet. |
Ying Wang | 02a83e9 | 2014-09-04 12:18:51 -0700 | [diff] [blame] | 757 | TARGET_AVAILABLE_SDK_VERSIONS := $(TARGET_AVAILABLE_SDK_VERSIONS) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 758 | |
Joe Onorato | 15ee93b | 2011-04-08 15:03:48 -0700 | [diff] [blame] | 759 | INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt |
Hui Shu | e8af17e | 2014-02-21 14:18:19 -0800 | [diff] [blame] | 760 | INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt |
Ying Wang | 829f68b | 2014-06-26 17:54:28 -0700 | [diff] [blame] | 761 | INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt |
| 762 | 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] | 763 | |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 764 | # This is the standard way to name a directory containing prebuilt target |
| 765 | # objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so |
Jeff Brown | e33ba4c | 2011-07-11 22:11:46 -0700 | [diff] [blame] | 766 | TARGET_PREBUILT_TAG := android-$(TARGET_ARCH) |
Colin Cross | 12d18eb | 2014-05-22 12:01:23 -0700 | [diff] [blame] | 767 | ifdef TARGET_2ND_ARCH |
| 768 | TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH) |
| 769 | endif |
Bruce Beare | f1582e5 | 2010-10-14 14:31:48 -0700 | [diff] [blame] | 770 | |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 771 | # Set up RS prebuilt variables for compatibility library |
| 772 | |
Tim Murray | dc1d0ab | 2014-09-30 15:08:03 -0700 | [diff] [blame] | 773 | RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 774 | RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a |
Miao Wang | 302e944 | 2015-07-28 17:43:51 -0700 | [diff] [blame] | 775 | ifeq (true,$(TARGET_IS_64_BIT)) |
Miao Wang | 4121aa9 | 2016-03-30 13:29:42 -0700 | [diff] [blame] | 776 | RS_PREBUILT_LIBPATH := -L prebuilts/ndk/current/platforms/android-21/arch-$(TARGET_ARCH)/usr/lib64 \ |
| 777 | -L prebuilts/ndk/current/platforms/android-21/arch-$(TARGET_ARCH)/usr/lib |
Miao Wang | 302e944 | 2015-07-28 17:43:51 -0700 | [diff] [blame] | 778 | else |
Stephen Hines | ba2355c | 2015-09-30 22:32:05 -0700 | [diff] [blame] | 779 | RS_PREBUILT_LIBPATH := -L prebuilts/ndk/current/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib |
Miao Wang | 302e944 | 2015-07-28 17:43:51 -0700 | [diff] [blame] | 780 | endif |
Tim Murray | 1a6f09a | 2013-03-05 11:07:15 -0800 | [diff] [blame] | 781 | |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 782 | # API Level lists for Renderscript Compat lib. |
| 783 | RSCOMPAT_32BIT_ONLY_API_LEVELS := 8 9 10 11 12 13 14 15 16 17 18 19 20 |
Miao Wang | ec27a89 | 2014-11-20 11:05:18 -0800 | [diff] [blame] | 784 | RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13 |
Miao Wang | e4359cf | 2015-01-07 18:18:41 -0800 | [diff] [blame] | 785 | |
Dan Willemsen | 6731b49 | 2016-06-07 16:55:57 -0700 | [diff] [blame] | 786 | NDK_PREBUILT_SHARED_LIBRARIES := android c dl EGL GLESv1_CM GLESv2 GLESv3 jnigraphics log mediandk m OpenMAXAL OpenSLES stdc++ vulkan z |
| 787 | |
Dan Willemsen | fdf89cd | 2016-02-05 18:24:17 -0800 | [diff] [blame] | 788 | ifeq ($(JAVA_NOT_REQUIRED),true) |
| 789 | # Remove java and tools from our path so that we make sure nobody uses them. |
| 790 | unexport ANDROID_JAVA_HOME |
| 791 | unexport JAVA_HOME |
| 792 | export ANDROID_BUILD_PATHS:=$(abspath $(BUILD_SYSTEM)/no_java_path):$(ANDROID_BUILD_PATHS) |
| 793 | export PATH:=$(abspath $(BUILD_SYSTEM)/no_java_path):$(PATH) |
| 794 | endif |
| 795 | |
Ying Wang | 854be68 | 2013-04-05 18:02:16 -0700 | [diff] [blame] | 796 | include $(BUILD_SYSTEM)/dumpvar.mk |