blob: 7a468a4154a80bdcd620ac10baaea04116ee495b [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001# 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 Wang6714dbc2010-03-30 16:42:15 -07006# Only use ANDROID_BUILD_SHELL to wrap around bash.
7# DO NOT use other shells such as zsh.
Ying Wang2ce495a2010-03-30 12:55:13 -07008ifdef ANDROID_BUILD_SHELL
9SHELL := $(ANDROID_BUILD_SHELL)
10else
The Android Open Source Project88b60792009-03-03 19:28:42 -080011# 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.
14SHELL := /bin/bash
Ying Wang2ce495a2010-03-30 12:55:13 -070015endif
The Android Open Source Project88b60792009-03-03 19:28:42 -080016
Ying Wang157a5e12012-09-27 13:26:25 -070017# Utility variables.
18empty :=
19space := $(empty) $(empty)
20comma := ,
Ying Wang58a5db32014-10-03 11:36:27 -070021# Note that make will eat the newline just before endef.
22define newline
23
24
25endef
Ying Wang127da9e2015-09-22 14:37:53 -070026# The pound character "#"
27define pound
28#
29endef
Ying Wang58a5db32014-10-03 11:36:27 -070030# Unfortunately you can't simply define backslash as \ or \\.
31backslash := \a
32backslash := $(patsubst %a,%,$(backslash))
Ying Wang157a5e12012-09-27 13:26:25 -070033
Joe Onoratobc8abb62010-01-04 12:57:38 -080034# Tell python not to spam the source tree with .pyc files. This
35# only has an effect on python 2.6 and above.
36export PYTHONDONTWRITEBYTECODE := 1
37
The Android Open Source Project88b60792009-03-03 19:28:42 -080038# Standard source directories.
39SRC_DOCS:= $(TOPDIR)docs
40# TODO: Enforce some kind of layering; only add include paths
41# when a module links against a particular library.
42# TODO: See if we can remove most of these from the global list.
43SRC_HEADERS := \
44 $(TOPDIR)system/core/include \
Rom Lemarchand93dda7c2015-04-03 15:09:11 -070045 $(TOPDIR)system/media/audio/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080046 $(TOPDIR)hardware/libhardware/include \
47 $(TOPDIR)hardware/libhardware_legacy/include \
48 $(TOPDIR)hardware/ril/include \
Elliott Hughes89898df2012-05-03 16:37:40 -070049 $(TOPDIR)libnativehelper/include \
Mathias Agopianbd118e62012-03-05 16:04:31 -080050 $(TOPDIR)frameworks/native/include \
51 $(TOPDIR)frameworks/native/opengl/include \
James Dongc49ee712012-03-23 18:46:42 -070052 $(TOPDIR)frameworks/av/include \
Derek Sollenbergeraa426722014-02-27 14:02:37 -050053 $(TOPDIR)frameworks/base/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080054SRC_HOST_HEADERS:=$(TOPDIR)tools/include
55SRC_LIBRARIES:= $(TOPDIR)libs
56SRC_SERVERS:= $(TOPDIR)servers
57SRC_TARGET_DIR := $(TOPDIR)build/target
Ying Wang19cc22b2012-12-04 15:07:34 -080058SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api
Ying Wang829f68b2014-06-26 17:54:28 -070059SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api
The Android Open Source Project88b60792009-03-03 19:28:42 -080060
61# Some specific paths to tools
62SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc
63
64# Various mappings to avoid hard-coding paths all over the place
65include $(BUILD_SYSTEM)/pathmap.mk
66
67# ###############################################################
68# Build system internal files
69# ###############################################################
70
71BUILD_COMBOS:= $(BUILD_SYSTEM)/combo
72
73CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk
74BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk
75BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk
76BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080077BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk
78BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080079BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk
80BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk
Dima Zavinf625bf22010-09-16 00:25:16 -070081BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080082BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk
83BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk
84BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk
85BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk
86BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk
87BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk
88BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk
89BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk
Ying Wang4c681742010-07-20 11:08:47 -070090BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk
Colin Cross52a341b2013-11-15 14:37:23 -080091BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk
Ying Wang4c681742010-07-20 11:08:47 -070092BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk
Dan Albert36b6f042015-07-30 16:56:30 -070093BUILD_FUZZ_TEST := $(BUILD_SYSTEM)/fuzz_test.mk
94BUILD_HOST_FUZZ_TEST := $(BUILD_SYSTEM)/host_fuzz_test.mk
Christopher Ferris70ca5e52014-02-04 22:09:16 -080095
96BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk
97BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk
98BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk
99BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk
100
Ying Wang13d69502012-11-01 17:22:33 -0700101BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk
Narayan Kamath0dd273a2013-10-28 13:20:52 +0000102BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk
103BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk
104
The Android Open Source Project88b60792009-03-03 19:28:42 -0800105
106# ###############################################################
107# Parse out any modifier targets.
108# ###############################################################
109
110# The 'showcommands' goal says to show the full command
111# lines being executed, instead of a short message about
112# the kind of operation being done.
113SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS))
Ying Wangbb1da5e2015-07-28 17:57:45 -0700114hide := $(if $(SHOW_COMMANDS),,@)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800115
116# ###############################################################
117# Set common values
118# ###############################################################
119
120# These can be changed to modify both host and device modules.
Marco Nelissene4aaa362009-07-13 20:42:49 -0700121COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith
The Android Open Source Project88b60792009-03-03 19:28:42 -0800122COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG
123
Colin Cross63e3b022015-09-24 22:14:25 -0700124# Force gcc to always output color diagnostics. Ninja will strip the ANSI
125# color codes if it is not running in a terminal.
Colin Cross309b4202015-09-25 17:00:14 -0700126# Use host and target GLOBAL_CFLAGS so it doesn't apply to HOST_CROSS, the windows
127# toolchain is still 4.8 and doesn't support color.
128HOST_GLOBAL_CFLAGS += -fdiagnostics-color
129TARGET_GLOBAL_CFLAGS += -fdiagnostics-color
Colin Cross63e3b022015-09-24 22:14:25 -0700130
Dan Willemsen3ad35492015-09-22 16:52:58 -0700131COMMON_GLOBAL_CPPFLAGS:= -Wsign-promo
132COMMON_RELEASE_CPPFLAGS:=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800133
Dan Albertd1600412015-06-10 16:33:43 -0700134GLOBAL_CFLAGS_NO_OVERRIDE := \
Dan Albert0c91fa82015-02-21 12:45:26 -0800135 -Werror=int-to-pointer-cast \
136 -Werror=pointer-to-int-cast \
137
Dan Albertd1600412015-06-10 16:33:43 -0700138GLOBAL_CLANG_CFLAGS_NO_OVERRIDE := \
139 -Werror=address-of-temporary \
140 -Werror=null-dereference \
141 -Werror=return-type \
142
Dan Albert0c91fa82015-02-21 12:45:26 -0800143GLOBAL_CPPFLAGS_NO_OVERRIDE :=
144
The Android Open Source Project88b60792009-03-03 19:28:42 -0800145# Set the extensions used for various packages
146COMMON_PACKAGE_SUFFIX := .zip
147COMMON_JAVA_PACKAGE_SUFFIX := .jar
148COMMON_ANDROID_PACKAGE_SUFFIX := .apk
149
150# list of flags to turn specific warnings in to errors
Marco Nelissenbac9a7f2009-07-13 17:51:59 -0700151TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point
The Android Open Source Project88b60792009-03-03 19:28:42 -0800152
Yohann Rousself528e132015-03-13 12:08:26 +0100153ifdef TMPDIR
154JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR)
155else
156JAVA_TMPDIR_ARG :=
157endif
158
The Android Open Source Project88b60792009-03-03 19:28:42 -0800159# ###############################################################
160# Include sub-configuration files
161# ###############################################################
162
163# ---------------------------------------------------------------
164# Try to include buildspec.mk, which will try to set stuff up.
Brian Carlstrom1aeee8b2013-06-27 12:02:46 -0700165# If this file doesn't exist, the environment variables will
The Android Open Source Project88b60792009-03-03 19:28:42 -0800166# be used, and if that doesn't work, then the default is an
167# arm build
Ying Wangd4495e92011-11-02 13:49:08 -0700168ifndef ANDROID_BUILDSPEC
169ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk
170endif
171-include $(ANDROID_BUILDSPEC)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800172
173# ---------------------------------------------------------------
174# Define most of the global variables. These are the ones that
175# are specific to the user's build configuration.
176include $(BUILD_SYSTEM)/envsetup.mk
177
C. Sean Youngcf469982015-06-09 12:35:45 -0500178# Pruned directory options used when using findleaves.py
179# See envsetup.mk for a description of SCAN_EXCLUDE_DIRS
180FIND_LEAVES_EXCLUDES := $(addprefix --prune=, $(OUT_DIR) $(SCAN_EXCLUDE_DIRS) .repo .git)
181
Dan Willemsenccc933e2015-08-11 15:25:12 -0700182# ---------------------------------------------------------------
183# Allow the C/C++ macros __DATE__ and __TIME__ to be set to the
184# build date and time, so that a build may be repeated.
185# Write the date and time to a file so that the command line
186# doesn't change every time, which would cause ninja to rebuild
187# the files.
188$(shell mkdir -p $(OUT_DIR) && \
189 $(DATE) "+%b %_d %Y" > $(OUT_DIR)/build_c_date.txt && \
190 $(DATE) +%T > $(OUT_DIR)/build_c_time.txt)
191BUILD_DATETIME_C_DATE := $$(cat $(OUT_DIR)/build_c_date.txt)
192BUILD_DATETIME_C_TIME := $$(cat $(OUT_DIR)/build_c_time.txt)
193
194ifeq ($(OVERRIDE_C_DATE_TIME),true)
195COMMON_GLOBAL_CFLAGS += -Wno-builtin-macro-redefined -D__DATE__="\"$(BUILD_DATETIME_C_DATE)\"" -D__TIME__=\"$(BUILD_DATETIME_C_TIME)\"
Dan Willemsenccc933e2015-08-11 15:25:12 -0700196endif
197
Dima Zavin06e758a2012-03-30 10:45:38 -0700198# The build system exposes several variables for where to find the kernel
199# headers:
200# TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current
201# device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers,
202# e.g. device/samsung/tuna/kernel-headers. This directory is not
203# explicitly set by anyone, the build system always adds this subdir.
204#
205# TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file
206# to allow other directories to be included. This is useful if there's
207# some common place where a few headers are being kept for a group
208# of devices. For example, device/<vendor>/common/kernel-headers could
209# contain some headers for several of <vendor>'s devices.
210#
211# TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance
212# graph. This allows architecture products to provide headers for the
213# devices using that architecture. For example,
214# hardware/ti/omap4xxx/omap4.mk will specify
215# PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4
216# specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers.
217# The build system then combines all the values specified by all the
218# PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance
219# tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable.
220#
221# The layout of subdirs in any of the kernel-headers dir should mirror the
222# layout of the kernel include/ directory. For example,
223# device/samsung/tuna/kernel-headers/linux/,
224# hardware/ti/omap4xxx/kernel-headers/media/,
225# etc.
226#
227# NOTE: These directories MUST contain post-processed headers using the
228# bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel
229# headers must also be checked in, but in a different subdirectory. By
230# convention, the originals should be checked into original-kernel-headers
231# directory of the same parent dir. For example,
232# device/samsung/tuna/kernel-headers <----- post-processed
233# device/samsung/tuna/original-kernel-headers <----- originals
234#
Dima Zavin4e16f962012-03-14 23:50:17 -0700235TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers))
236
Dima Zavinf9269902012-03-16 09:57:11 -0700237define validate-kernel-headers
238$(if $(firstword $(foreach hdr_dir,$(1),\
239 $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\
240 $(error Kernel header dirs must be end in kernel-headers: $(1)))
241endef
Dima Zavin4e16f962012-03-14 23:50:17 -0700242# also allow the board config to provide additional directories since
243# there could be device/oem/base_hw and device/oem/derived_hw
244# that both are valid devices but derived_hw needs to use kernel headers
245# from base_hw.
246TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS)))
247TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS))
Dima Zavinf9269902012-03-16 09:57:11 -0700248$(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS))
249
250# then add product-inherited includes, to allow for
251# hardware/sivendor/chip/chip.mk to include their own headers
252TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS)))
253TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS))
254$(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS))
Dima Zavin4e16f962012-03-14 23:50:17 -0700255
Patrick Scott87c86572009-06-23 15:25:06 -0400256# Clean up/verify variables defined by the board config file.
257TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
258TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI))
259ifeq ($(TARGET_CPU_ABI),)
260 $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk))
261endif
David 'Digit' Turner2edfb712009-11-06 15:12:00 -0800262TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2))
Patrick Scott87c86572009-06-23 15:25:06 -0400263
The Android Open Source Project88b60792009-03-03 19:28:42 -0800264combo_target := HOST_
Ying Wange1d44c32013-12-27 11:09:36 -0800265combo_2nd_arch_prefix :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800266include $(BUILD_SYSTEM)/combo/select.mk
267
Ying Wang6feb6d52014-04-17 10:03:35 -0700268# Load the 2nd host arch if it's needed.
269ifdef HOST_2ND_ARCH
270combo_target := HOST_
271combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX)
272include $(BUILD_SYSTEM)/combo/select.mk
273endif
274
Dan Willemsen057aaea2015-08-14 12:59:50 -0700275# Load the windows cross compiler under Linux
276ifdef HOST_CROSS_OS
277combo_target := HOST_CROSS_
278combo_2nd_arch_prefix :=
279include $(BUILD_SYSTEM)/combo/select.mk
280endif
281
The Android Open Source Project88b60792009-03-03 19:28:42 -0800282# on windows, the tools have .exe at the end, and we depend on the
283# host config stuff being done first
284
285combo_target := TARGET_
Ying Wange1d44c32013-12-27 11:09:36 -0800286combo_2nd_arch_prefix :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800287include $(BUILD_SYSTEM)/combo/select.mk
288
Ying Wange1d44c32013-12-27 11:09:36 -0800289# Load the 2nd target arch if it's needed.
290ifdef TARGET_2ND_ARCH
291combo_target := TARGET_
292combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
293include $(BUILD_SYSTEM)/combo/select.mk
294endif
295
Ying Wangc671a7c2015-07-20 18:40:18 -0700296include $(BUILD_SYSTEM)/ccache.mk
Shinichiro Hamajiee482fd2015-08-17 17:38:24 +0900297include $(BUILD_SYSTEM)/goma.mk
Ying Wangc671a7c2015-07-20 18:40:18 -0700298
Colin Crossa3339e92014-04-30 18:09:13 -0700299ifdef TARGET_PREFER_32_BIT
300TARGET_PREFER_32_BIT_APPS := true
301TARGET_PREFER_32_BIT_EXECUTABLES := true
302endif
303
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700304ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS))
305 TARGET_SUPPORTS_32_BIT_APPS := true
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100306endif
307
308# "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are
309# comma separated lists of the 32 and 64 bit ABIs (in order of
310# preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT
311# are defined by the board config, we use them. Else, we construct
312# these lists based on whether TARGET_IS_64_BIT is set.
313#
314# Note that this assumes that the 2ND_CPU_ABI for a 64 bit target
315# is always 32 bits. If this isn't the case, these variables should
Brian Carlstromd7950462014-06-16 16:51:42 -0700316# be overriden in the board configuration.
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100317ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT))
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700318 ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS))
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100319 TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2)
320 endif
321endif
322
323ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT))
324 ifneq (true,$(TARGET_IS_64_BIT))
325 TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2)
326 else
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700327 ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS))
328 # For a 64 bit target, assume that the 2ND_CPU_ABI
329 # is a 32 bit ABI.
330 TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2)
331 endif
332 endif
333endif
334
335# "ro.product.cpu.abilist" is a comma separated list of ABIs (in order
336# of preference) that the target supports. If a TARGET_CPU_ABI_LIST
337# is specified by the board configuration, we use that. If not, we
338# build a list out of the TARGET_CPU_ABIs specified by the config.
339ifeq (,$(TARGET_CPU_ABI_LIST))
340 ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true)
341 TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT)
342 else
343 TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_64_BIT) $(TARGET_CPU_ABI_LIST_32_BIT)
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100344 endif
345endif
346
347# Strip whitespace from the ABI list string.
348TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST)))
349TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT)))
350TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT)))
351
Ying Wangdf2b4b32012-01-12 16:38:17 -0800352# Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX
353# if only TARGET_TOOLS_PREFIX is passed to the make command.
354ifndef TARGET_TOOLCHAIN_ROOT
355TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX)))
356TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT)))
357TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT))
358endif
359
Andrew Hsieh906cb782013-09-10 17:37:14 +0800360# Normalize WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK
361ifeq ($(strip $(WITH_STATIC_ANALYZER)),0)
362 WITH_STATIC_ANALYZER :=
363endif
364ifeq ($(strip $(WITH_SYNTAX_CHECK)),0)
365 WITH_SYNTAX_CHECK :=
366endif
367
368# Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800369SYNTAX_TOOLS_PREFIX := prebuilts/misc/$(HOST_PREBUILT_TAG)/analyzer/bin
Andrew Hsieh906cb782013-09-10 17:37:14 +0800370ifneq ($(strip $(WITH_STATIC_ANALYZER)),)
371 ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),)
372 $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist)
373 WITH_STATIC_ANALYZER :=
374 endif
375endif
Andrew Hsiehe7c2d142013-08-27 17:55:46 +0800376ifneq ($(strip $(WITH_SYNTAX_CHECK)),)
377 ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-syntax),)
378 $(warning *** Disable WITH_SYNTAX_CHECK because $(SYNTAX_TOOLS_PREFIX)/ccc-syntax does not exist)
379 WITH_SYNTAX_CHECK :=
380 endif
381endif
382
Andrew Hsieh906cb782013-09-10 17:37:14 +0800383# WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK
384ifneq ($(strip $(WITH_STATIC_ANALYZER)),)
385 ifneq ($(strip $(WITH_SYNTAX_CHECK)),)
386 $(warning *** Disable WITH_SYNTAX_CHECK in the presence of static analyzer WITH_STATIC_ANALYZER)
387 WITH_SYNTAX_CHECK :=
388 endif
389endif
390
The Android Open Source Project88b60792009-03-03 19:28:42 -0800391# Pick a Java compiler.
392include $(BUILD_SYSTEM)/combo/javac.mk
393
394# ---------------------------------------------------------------
395# Check that the configuration is current. We check that
396# BUILD_ENV_SEQUENCE_NUMBER is current against this value.
397# Don't fail if we're called from envsetup, so they have a
398# chance to update their environment.
399
400ifeq (,$(strip $(CALLED_FROM_SETUP)))
401ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER)))
402ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER))
403$(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.)
404$(info *** If you use envsetup/lunch/choosecombo:)
405$(info *** - Re-execute envsetup (". envsetup.sh"))
406$(info *** - Re-run lunch or choosecombo)
407$(info *** If you use buildspec.mk:)
408$(info *** - Look at buildspec.mk.default to see what has changed)
409$(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)")
410$(error bailing..)
411endif
412endif
413endif
414
415
416# ---------------------------------------------------------------
417# Generic tools.
Yohann Rousselabee3a92015-03-10 16:50:55 +0100418JACK := $(HOST_OUT_EXECUTABLES)/jack
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200419JACK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack.jar
Yohann Roussel77cbe102015-04-14 18:38:11 +0200420JACK_LAUNCHER_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack-launcher.jar
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200421JILL_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jill.jar
422JACK_MULTIDEX_DEFAULT_PREPROCESSOR := frameworks/multidex/library/resources/JACK-INF/legacyMultidexInstallation.jpp
The Android Open Source Project88b60792009-03-03 19:28:42 -0800423
Ying Wang63741532014-05-16 09:37:23 -0700424LEX := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/flex/flex-2.5.39
Ying Wang854be682013-04-05 18:02:16 -0700425# The default PKGDATADIR built in the prebuilt bison is a relative path
426# external/bison/data.
427# To run bison from elsewhere you need to set up enviromental variable
428# BISON_PKGDATADIR.
429BISON_PKGDATADIR := $(PWD)/external/bison/data
Ying Wang6feb6d52014-04-17 10:03:35 -0700430BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison
Ying Wang854be682013-04-05 18:02:16 -0700431YACC := $(BISON) -d
432
Ying Wang7b913ce2014-06-05 19:05:47 -0700433YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm
434
The Android Open Source Project88b60792009-03-03 19:28:42 -0800435DOXYGEN:= doxygen
436AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800437AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX)
Steve Fungcb2e67f2015-09-24 01:40:52 -0700438ifeq ($(HOST_OS),linux)
439BREAKPAD_DUMP_SYMS := $(HOST_OUT_EXECUTABLES)/dump_syms
440else
441# For non-supported hosts, do not generate breakpad symbols.
442BREAKPAD_GENERATE_SYMBOLS := false
443endif
Wink Savillee7890832010-11-05 11:28:51 -0700444PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX)
Christopher Wileybc2be462015-07-29 17:14:24 -0700445DBUS_GENERATOR := $(HOST_OUT_EXECUTABLES)/dbus-binding-generator
The Android Open Source Project88b60792009-03-03 19:28:42 -0800446SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX)
447MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX)
Doug Zongker8b70e8c2009-05-27 09:14:25 -0700448MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX)
Bjorn Andersson612e2cd2012-11-25 16:53:44 -0800449ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800450MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX)
Bjorn Andersson612e2cd2012-11-25 16:53:44 -0800451else
452MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG)
453endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800454APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX)
455FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX)
Colin Cross9dd4ba82010-08-03 14:43:15 -0700456MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX)
Ying Wang542903a2010-11-17 15:40:38 -0800457MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh
Mohamad Ayyash68946952015-03-03 12:30:37 -0800458ifeq ($(HOST_OS),linux)
459MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX)
460MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh
461else
462MAKE_SQUASHFS :=
463MKSQUASHFSUSERIMG :=
464endif
JP Abgrall5bfed5a2014-06-16 14:17:40 -0700465MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX)
466MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh
Ying Wang69e9b4d2012-11-26 18:10:23 -0800467SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX)
Mohamad Ayyash353265b2015-06-24 15:42:19 -0700468IMG2SIMG := $(HOST_OUT_EXECUTABLES)/img2simg$(HOST_EXECUTABLE_SUFFIX)
Ying Wang69e9b4d2012-11-26 18:10:23 -0800469E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800470MKTARBALL := build/tools/mktarball.sh
Colin Cross0a7b2c52010-05-07 02:23:59 -0700471TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX)
472E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX)
Steve Howardef5c6402010-05-03 15:01:38 -0700473JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar
Yohann Roussel28096662015-02-02 12:18:20 +0100474
Yohann Roussel37822c42015-01-09 10:36:40 +0100475ifeq ($(ANDROID_COMPILE_WITH_JACK),true)
476DEFAULT_JACK_ENABLED:=full
477else
478DEFAULT_JACK_ENABLED:=
479endif
Yohann Roussel28096662015-02-02 12:18:20 +0100480ifneq ($(strip $(ANDROID_JACK_VM)),)
481JACK_VM := $(ANDROID_JACK_VM)
482else
483JACK_VM := java
484endif
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200485# call jack
486#
Yohann Roussel28096662015-02-02 12:18:20 +0100487# $(1): vm arguments
488# $(2): jack perf arguments
Yohann Rousselabee3a92015-03-10 16:50:55 +0100489ifneq (,$(strip $(filter dist,$(MAKECMDGOALS))))
490JACK_SERVER_LOG_COMMAND := mkdir -p $(DIST_DIR)/logs/; SERVER_LOG=$(DIST_DIR)/logs/jack-server.log
491endif
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200492define call-jack
Yohann Roussel77cbe102015-04-14 18:38:11 +0200493$(JACK_SERVER_LOG_COMMAND) JACK_VM_COMMAND="$(JACK_VM) $(1) $(JAVA_TMPDIR_ARG) -jar $(JACK_LAUNCHER_JAR) " JACK_JAR="$(JACK_JAR)" $(JACK) $(2)
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200494endef
Yohann Roussel28096662015-02-02 12:18:20 +0100495$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_JACK_VM_ARGS := $(DEFAULT_JACK_VM_ARGS)
Yohann Roussele163b4e2015-04-09 10:10:21 +0000496ifneq ($(ANDROID_JACK_VM_ARGS),)
497DEFAULT_JACK_VM_ARGS := $(ANDROID_JACK_VM_ARGS)
498else
Yohann Rousselabee3a92015-03-10 16:50:55 +0100499DEFAULT_JACK_VM_ARGS := -Dfile.encoding=UTF-8 -Xms2560m -XX:+TieredCompilation
Yohann Roussele163b4e2015-04-09 10:10:21 +0000500endif
501ifneq ($(ANDROID_JACK_EXTRA_ARGS),)
502DEFAULT_JACK_EXTRA_ARGS := $(ANDROID_JACK_EXTRA_ARGS)
503else
Yohann Rousselb6bfb582015-05-13 16:03:28 +0200504DEFAULT_JACK_EXTRA_ARGS := @$(BUILD_SYSTEM)/jack-default.args
Yohann Roussele163b4e2015-04-09 10:10:21 +0000505endif
Yohann Rousselec46a3b2015-03-05 18:35:05 +0100506# Turn off jack warnings by default.
507DEFAULT_JACK_EXTRA_ARGS += --verbose error
Yohann Rousself528e132015-03-13 12:08:26 +0100508
Yohann Roussel76a5e0b2015-03-17 17:03:22 +0100509JILL := java -Xmx3500m -jar $(JILL_JAR)
Joe Onorato2daa2b32009-08-30 13:39:24 -0700510PROGUARD := external/proguard/bin/proguard.sh
Doug Zongker9bd49622009-11-30 14:28:59 -0800511JAVATAGS := build/tools/java-event-log-tags.py
Shih-wei Liaod01fadb2010-10-08 16:57:46 -0700512LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX)
Stephen Hinese719f282012-11-28 16:52:41 -0800513BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat$(HOST_EXECUTABLE_SUFFIX)
Ying Wanga3b75932013-08-14 16:59:00 -0700514RMTYPEDEFS := $(HOST_OUT_EXECUTABLES)/rmtypedefs
Colin Cross8a30f722014-04-28 16:27:32 -0700515APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg
516VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer
Colin Cross477cf2b2014-04-16 18:49:56 -0700517BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree
Geremy Condra740b6632014-07-08 20:07:41 -0700518BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer
David Riley17be3d32015-03-03 08:54:11 -0800519FUTILITY := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/futility/futility
520VBOOT_SIGNER := prebuilts/misc/scripts/vboot_signer/vboot_signer.sh
The Android Open Source Project88b60792009-03-03 19:28:42 -0800521
Raphael9ca16282010-04-16 17:50:09 -0700522# ACP is always for the build OS, not for the host OS
523ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX)
524
The Android Open Source Project88b60792009-03-03 19:28:42 -0800525# dx is java behind a shell script; no .exe necessary.
526DX := $(HOST_OUT_EXECUTABLES)/dx
The Android Open Source Project88b60792009-03-03 19:28:42 -0800527ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX)
Dmitriy Ivanov4c2d1a62015-04-20 16:59:05 -0700528
529# relocation packer
530RELOCATION_PACKER := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/relocation_packer/relocation_packer
531
Yuncheol Heo623d7062014-05-20 17:04:16 +0900532FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin
533FINDBUGS := $(FINDBUGS_DIR)/findbugs
The Android Open Source Project88b60792009-03-03 19:28:42 -0800534EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX)
535
Ying Wangdc7fee92014-02-05 18:24:45 -0800536# Tool to merge AndroidManifest.xmls
537ANDROID_MANIFEST_MERGER := java -classpath prebuilts/devtools/tools/lib/manifest-merger.jar com.android.manifmerger.Main merge
538
The Android Open Source Project88b60792009-03-03 19:28:42 -0800539YACC_HEADER_SUFFIX:= .hpp
The Android Open Source Project88b60792009-03-03 19:28:42 -0800540
The Android Open Source Project88b60792009-03-03 19:28:42 -0800541COLUMN:= column
The Android Open Source Project88b60792009-03-03 19:28:42 -0800542
Narayan Kamathab2e2e72013-12-05 15:20:41 +0000543HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
Narayan Kamathab2e2e72013-12-05 15:20:41 +0000544
545ifneq ($(HOST_JDK_TOOLS_JAR),)
Ying Wangec5e7292010-04-26 18:36:52 -0700546ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),)
Chris Wren1f115752014-03-07 14:51:56 -0500547$(error Error: could not find jdk tools.jar, please check if your JDK was installed correctly)
Ying Wangec5e7292010-04-26 18:36:52 -0700548endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800549endif
550
Ying Wang053dccb2011-05-24 15:46:15 -0700551# Is the host JDK 64-bit version?
552HOST_JDK_IS_64BIT_VERSION :=
553ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),)
554HOST_JDK_IS_64BIT_VERSION := true
555endif
556
The Android Open Source Project88b60792009-03-03 19:28:42 -0800557# It's called md5 on Mac OS and md5sum on Linux
558ifeq ($(HOST_OS),darwin)
559MD5SUM:=md5 -q
560else
561MD5SUM:=md5sum
562endif
563
Joe Onorato2a6e0522011-04-08 17:32:52 -0700564APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR)
565APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX)
566APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX)
567APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)"
568
Ying Wang3c21fe52011-10-04 10:50:08 -0700569# The default key if not set as LOCAL_CERTIFICATE
570ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
571 DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE)
572else
573 DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey
574endif
575
The Android Open Source Project88b60792009-03-03 19:28:42 -0800576# ###############################################################
577# Set up final options.
578# ###############################################################
579
580HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800581HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
582
583HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800584HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
585
586TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800587TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
588
589TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800590TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
591
592HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES)
593TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES)
594
595HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS)
Dima Zavin4e16f962012-03-14 23:50:17 -0700596TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \
Dima Zavin8e4042c2012-03-30 10:24:31 -0700597 $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \
598 $(TARGET_PRODUCT_KERNEL_HEADERS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800599
600# Many host compilers don't support these flags, so we have to make
601# sure to only specify them for the target compilers checked in to
Jeff Browne33ba4c2011-07-11 22:11:46 -0700602# the source tree.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800603TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800604
Dave Bort95282482009-04-23 18:44:55 -0700605HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS)
606HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800607
Dave Bort95282482009-04-23 18:44:55 -0700608TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS)
609TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800610
Ying Wange1d44c32013-12-27 11:09:36 -0800611ifdef TARGET_2ND_ARCH
Ying Wang9fb35262014-02-21 16:17:05 -0800612$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
613$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
614$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
615$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
616$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LD_DIRS += -L$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES)
617$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES)
618$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS)
Ying Wang9fb35262014-02-21 16:17:05 -0800619$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS)
620$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS)
Ying Wange1d44c32013-12-27 11:09:36 -0800621endif
622
Ying Wang6feb6d52014-04-17 10:03:35 -0700623ifdef HOST_2ND_ARCH
624$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
625$(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
626$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
627$(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
628$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LD_DIRS += -L$($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES)
629$(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_INCLUDES := $(HOST_PROJECT_INCLUDES)
630$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS)
631$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS)
632endif
633
Dan Willemsen057aaea2015-08-14 12:59:50 -0700634ifdef HOST_CROSS_OS
635HOST_CROSS_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
636HOST_CROSS_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
637HOST_CROSS_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
638HOST_CROSS_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
639HOST_CROSS_GLOBAL_LD_DIRS += -L$(HOST_CROSS_OUT_INTERMEDIATE_LIBRARIES)
640HOST_CROSS_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_CROSS_OUT_HEADERS)
641HOST_CROSS_GLOBAL_CFLAGS += $(HOST_CROSS_RELEASE_CFLAGS)
642HOST_CROSS_GLOBAL_CPPFLAGS += $(HOST_CROSS_RELEASE_CPPFLAGS)
643endif
644
Mike Lockwoodc73018c2013-08-06 16:07:13 -0700645# allow overriding default Java libraries on a per-target basis
646ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),)
Neil Fullerf39a25b2015-08-11 13:48:34 +0100647 TARGET_DEFAULT_JAVA_LIBRARIES := core-libart core-junit ext framework okhttp
Mike Lockwoodc73018c2013-08-06 16:07:13 -0700648endif
649
Ian Rogers5d186ae2014-04-18 15:23:40 -0700650# Flags for DEX2OAT
651DEX2OAT_TARGET_ARCH := $(TARGET_ARCH)
Christopher Ferris9de4d5e2015-03-06 10:19:12 -0800652ifeq ($(TARGET_CPU_VARIANT),)
653ifeq ($(TARGET_ARCH_VARIANT),)
654DEX2OAT_TARGET_CPU_VARIANT := default
655else
656DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_ARCH_VARIANT)
657endif
658else
Ian Rogers5d186ae2014-04-18 15:23:40 -0700659DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_CPU_VARIANT)
Christopher Ferris9de4d5e2015-03-06 10:19:12 -0800660endif
Ying Wang8c7e74e2014-03-20 12:13:10 -0700661DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default
Ying Wang8c7e74e2014-03-20 12:13:10 -0700662
Ying Wangb9aa5d42014-05-13 13:57:28 -0700663ifdef TARGET_2ND_ARCH
664$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH)
665$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_2ND_CPU_VARIANT)
666$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default
Ying Wangb9aa5d42014-05-13 13:57:28 -0700667endif
668
Ying Wang1f982832014-02-06 18:08:44 -0800669# define clang/llvm tools and global flags
670include $(BUILD_SYSTEM)/clang/config.mk
yroussel13190052012-01-12 16:09:06 +0100671
The Android Open Source Project88b60792009-03-03 19:28:42 -0800672# ###############################################################
673# Collect a list of the SDK versions that we could compile against
674# For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE)
675# ###############################################################
676
Ying Wang9978faf2011-11-29 10:24:27 -0800677HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk
Ying Wangb50bd7f2011-11-29 11:20:16 -0800678HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700679
Ying Wang589e8c52015-05-19 16:03:57 -0700680# The path where app can reference the support library resources.
681ifdef TARGET_BUILD_APPS
682SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support
683else
684SUPPORT_LIBRARY_ROOT := frameworks/support
685endif
686
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700687# Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N.
688# The 'current' version is whatever this source tree is.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800689#
690# sgrax is the opposite of xargs. It takes the list of args and puts them
691# on each line for sort to process.
692# sort -g is a numeric sort, so 1 2 3 10 instead of 1 10 2 3.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800693
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700694# Numerically sort a list of numbers
695# $(1): the list of numbers to be sorted
696define numerically_sort
697$(shell function sgrax() { \
698 while [ -n "$$1" ] ; do echo $$1 ; shift ; done \
699 } ; \
700 ( sgrax $(1) | sort -g ) )
701endef
702
Ying Wanga1ff6292012-05-10 18:07:33 -0700703TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700704 $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \
Ying Wang2f7b92c2014-07-21 13:44:06 -0700705 $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar)))
706
707# We don't have prebuilt system_current SDK yet.
Ying Wang02a83e92014-09-04 12:18:51 -0700708TARGET_AVAILABLE_SDK_VERSIONS := $(TARGET_AVAILABLE_SDK_VERSIONS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800709
Joe Onorato15ee93b2011-04-08 15:03:48 -0700710INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt
Hui Shue8af17e2014-02-21 14:18:19 -0800711INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt
Ying Wang829f68b2014-06-26 17:54:28 -0700712INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt
713INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-removed.txt
Gary King1e80c292010-03-08 17:16:57 -0800714
Bruce Bearef1582e52010-10-14 14:31:48 -0700715# This is the standard way to name a directory containing prebuilt target
716# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
Jeff Browne33ba4c2011-07-11 22:11:46 -0700717TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
Colin Cross12d18eb2014-05-22 12:01:23 -0700718ifdef TARGET_2ND_ARCH
719TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH)
720endif
Bruce Bearef1582e52010-10-14 14:31:48 -0700721
Tim Murray1a6f09a2013-03-05 11:07:15 -0800722# Set up RS prebuilt variables for compatibility library
723
Tim Murraydc1d0ab2014-09-30 15:08:03 -0700724RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc
Tim Murray1a6f09a2013-03-05 11:07:15 -0800725RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a
Miao Wang302e9442015-07-28 17:43:51 -0700726ifeq (true,$(TARGET_IS_64_BIT))
Stephen Hinesba2355c2015-09-30 22:32:05 -0700727RS_PREBUILT_LIBPATH := -L prebuilts/ndk/current/platforms/android-21/arch-$(TARGET_ARCH)/usr/lib
Miao Wang302e9442015-07-28 17:43:51 -0700728else
Stephen Hinesba2355c2015-09-30 22:32:05 -0700729RS_PREBUILT_LIBPATH := -L prebuilts/ndk/current/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib
Miao Wang302e9442015-07-28 17:43:51 -0700730endif
Tim Murray1a6f09a2013-03-05 11:07:15 -0800731
Miao Wange4359cf2015-01-07 18:18:41 -0800732# API Level lists for Renderscript Compat lib.
733RSCOMPAT_32BIT_ONLY_API_LEVELS := 8 9 10 11 12 13 14 15 16 17 18 19 20
Miao Wangec27a892014-11-20 11:05:18 -0800734RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13
Miao Wange4359cf2015-01-07 18:18:41 -0800735
Ying Wang854be682013-04-05 18:02:16 -0700736include $(BUILD_SYSTEM)/dumpvar.mk