blob: c3ed00fc774dafdfed57796a1e3e2d32c66841e7 [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
26# Unfortunately you can't simply define backslash as \ or \\.
27backslash := \a
28backslash := $(patsubst %a,%,$(backslash))
Ying Wang157a5e12012-09-27 13:26:25 -070029
Joe Onoratobc8abb62010-01-04 12:57:38 -080030# Tell python not to spam the source tree with .pyc files. This
31# only has an effect on python 2.6 and above.
32export PYTHONDONTWRITEBYTECODE := 1
33
The Android Open Source Project88b60792009-03-03 19:28:42 -080034# Standard source directories.
35SRC_DOCS:= $(TOPDIR)docs
36# TODO: Enforce some kind of layering; only add include paths
37# when a module links against a particular library.
38# TODO: See if we can remove most of these from the global list.
39SRC_HEADERS := \
40 $(TOPDIR)system/core/include \
Rom Lemarchand93dda7c2015-04-03 15:09:11 -070041 $(TOPDIR)system/media/audio/include \
The Android Open Source Project88b60792009-03-03 19:28:42 -080042 $(TOPDIR)hardware/libhardware/include \
43 $(TOPDIR)hardware/libhardware_legacy/include \
44 $(TOPDIR)hardware/ril/include \
Elliott Hughes89898df2012-05-03 16:37:40 -070045 $(TOPDIR)libnativehelper/include \
Mathias Agopianbd118e62012-03-05 16:04:31 -080046 $(TOPDIR)frameworks/native/include \
47 $(TOPDIR)frameworks/native/opengl/include \
James Dongc49ee712012-03-23 18:46:42 -070048 $(TOPDIR)frameworks/av/include \
Derek Sollenbergeraa426722014-02-27 14:02:37 -050049 $(TOPDIR)frameworks/base/include
The Android Open Source Project88b60792009-03-03 19:28:42 -080050SRC_HOST_HEADERS:=$(TOPDIR)tools/include
51SRC_LIBRARIES:= $(TOPDIR)libs
52SRC_SERVERS:= $(TOPDIR)servers
53SRC_TARGET_DIR := $(TOPDIR)build/target
Ying Wang19cc22b2012-12-04 15:07:34 -080054SRC_API_DIR := $(TOPDIR)prebuilts/sdk/api
Ying Wang829f68b2014-06-26 17:54:28 -070055SRC_SYSTEM_API_DIR := $(TOPDIR)prebuilts/sdk/system-api
The Android Open Source Project88b60792009-03-03 19:28:42 -080056
57# Some specific paths to tools
58SRC_DROIDDOC_DIR := $(TOPDIR)build/tools/droiddoc
59
60# Various mappings to avoid hard-coding paths all over the place
61include $(BUILD_SYSTEM)/pathmap.mk
62
63# ###############################################################
64# Build system internal files
65# ###############################################################
66
67BUILD_COMBOS:= $(BUILD_SYSTEM)/combo
68
69CLEAR_VARS:= $(BUILD_SYSTEM)/clear_vars.mk
70BUILD_HOST_STATIC_LIBRARY:= $(BUILD_SYSTEM)/host_static_library.mk
71BUILD_HOST_SHARED_LIBRARY:= $(BUILD_SYSTEM)/host_shared_library.mk
72BUILD_STATIC_LIBRARY:= $(BUILD_SYSTEM)/static_library.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080073BUILD_SHARED_LIBRARY:= $(BUILD_SYSTEM)/shared_library.mk
74BUILD_EXECUTABLE:= $(BUILD_SYSTEM)/executable.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080075BUILD_HOST_EXECUTABLE:= $(BUILD_SYSTEM)/host_executable.mk
76BUILD_PACKAGE:= $(BUILD_SYSTEM)/package.mk
Dima Zavinf625bf22010-09-16 00:25:16 -070077BUILD_PHONY_PACKAGE:= $(BUILD_SYSTEM)/phony_package.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080078BUILD_HOST_PREBUILT:= $(BUILD_SYSTEM)/host_prebuilt.mk
79BUILD_PREBUILT:= $(BUILD_SYSTEM)/prebuilt.mk
80BUILD_MULTI_PREBUILT:= $(BUILD_SYSTEM)/multi_prebuilt.mk
81BUILD_JAVA_LIBRARY:= $(BUILD_SYSTEM)/java_library.mk
82BUILD_STATIC_JAVA_LIBRARY:= $(BUILD_SYSTEM)/static_java_library.mk
83BUILD_HOST_JAVA_LIBRARY:= $(BUILD_SYSTEM)/host_java_library.mk
84BUILD_DROIDDOC:= $(BUILD_SYSTEM)/droiddoc.mk
85BUILD_COPY_HEADERS := $(BUILD_SYSTEM)/copy_headers.mk
Ying Wang4c681742010-07-20 11:08:47 -070086BUILD_NATIVE_TEST := $(BUILD_SYSTEM)/native_test.mk
Colin Cross52a341b2013-11-15 14:37:23 -080087BUILD_NATIVE_BENCHMARK := $(BUILD_SYSTEM)/native_benchmark.mk
Ying Wang4c681742010-07-20 11:08:47 -070088BUILD_HOST_NATIVE_TEST := $(BUILD_SYSTEM)/host_native_test.mk
Christopher Ferris70ca5e52014-02-04 22:09:16 -080089
90BUILD_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/shared_test_lib.mk
91BUILD_HOST_SHARED_TEST_LIBRARY := $(BUILD_SYSTEM)/host_shared_test_lib.mk
92BUILD_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/static_test_lib.mk
93BUILD_HOST_STATIC_TEST_LIBRARY := $(BUILD_SYSTEM)/host_static_test_lib.mk
94
Ying Wang13d69502012-11-01 17:22:33 -070095BUILD_NOTICE_FILE := $(BUILD_SYSTEM)/notice_files.mk
Narayan Kamath0dd273a2013-10-28 13:20:52 +000096BUILD_HOST_DALVIK_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_java_library.mk
97BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY := $(BUILD_SYSTEM)/host_dalvik_static_java_library.mk
98
The Android Open Source Project88b60792009-03-03 19:28:42 -080099
100# ###############################################################
101# Parse out any modifier targets.
102# ###############################################################
103
104# The 'showcommands' goal says to show the full command
105# lines being executed, instead of a short message about
106# the kind of operation being done.
107SHOW_COMMANDS:= $(filter showcommands,$(MAKECMDGOALS))
108
109
110# ###############################################################
111# Set common values
112# ###############################################################
113
114# These can be changed to modify both host and device modules.
Marco Nelissene4aaa362009-07-13 20:42:49 -0700115COMMON_GLOBAL_CFLAGS:= -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith
The Android Open Source Project88b60792009-03-03 19:28:42 -0800116COMMON_RELEASE_CFLAGS:= -DNDEBUG -UDEBUG
117
Dan Albertbf0426f2014-09-08 19:06:04 -0700118COMMON_GLOBAL_CPPFLAGS:= $(COMMON_GLOBAL_CFLAGS) -Wsign-promo -std=gnu++11
Marco Nelissen73a075d2009-07-08 17:51:18 -0700119COMMON_RELEASE_CPPFLAGS:= $(COMMON_RELEASE_CFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800120
Dan Albert0c91fa82015-02-21 12:45:26 -0800121GLOBAL_CFLAGS_NO_OVERRIDE := \
122 -Werror=int-to-pointer-cast \
123 -Werror=pointer-to-int-cast \
124
125GLOBAL_CPPFLAGS_NO_OVERRIDE :=
126
The Android Open Source Project88b60792009-03-03 19:28:42 -0800127# Set the extensions used for various packages
128COMMON_PACKAGE_SUFFIX := .zip
129COMMON_JAVA_PACKAGE_SUFFIX := .jar
130COMMON_ANDROID_PACKAGE_SUFFIX := .apk
131
132# list of flags to turn specific warnings in to errors
Marco Nelissenbac9a7f2009-07-13 17:51:59 -0700133TARGET_ERROR_FLAGS := -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point
The Android Open Source Project88b60792009-03-03 19:28:42 -0800134
Yohann Rousself528e132015-03-13 12:08:26 +0100135ifdef TMPDIR
136JAVA_TMPDIR_ARG := -Djava.io.tmpdir=$(TMPDIR)
137else
138JAVA_TMPDIR_ARG :=
139endif
140
The Android Open Source Project88b60792009-03-03 19:28:42 -0800141# ###############################################################
142# Include sub-configuration files
143# ###############################################################
144
145# ---------------------------------------------------------------
146# Try to include buildspec.mk, which will try to set stuff up.
Brian Carlstrom1aeee8b2013-06-27 12:02:46 -0700147# If this file doesn't exist, the environment variables will
The Android Open Source Project88b60792009-03-03 19:28:42 -0800148# be used, and if that doesn't work, then the default is an
149# arm build
Ying Wangd4495e92011-11-02 13:49:08 -0700150ifndef ANDROID_BUILDSPEC
151ANDROID_BUILDSPEC := $(TOPDIR)buildspec.mk
152endif
153-include $(ANDROID_BUILDSPEC)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800154
155# ---------------------------------------------------------------
156# Define most of the global variables. These are the ones that
157# are specific to the user's build configuration.
158include $(BUILD_SYSTEM)/envsetup.mk
159
Dima Zavin06e758a2012-03-30 10:45:38 -0700160# The build system exposes several variables for where to find the kernel
161# headers:
162# TARGET_DEVICE_KERNEL_HEADERS is automatically created for the current
163# device being built. It is set as $(TARGET_DEVICE_DIR)/kernel-headers,
164# e.g. device/samsung/tuna/kernel-headers. This directory is not
165# explicitly set by anyone, the build system always adds this subdir.
166#
167# TARGET_BOARD_KERNEL_HEADERS is specified by the BoardConfig.mk file
168# to allow other directories to be included. This is useful if there's
169# some common place where a few headers are being kept for a group
170# of devices. For example, device/<vendor>/common/kernel-headers could
171# contain some headers for several of <vendor>'s devices.
172#
173# TARGET_PRODUCT_KERNEL_HEADERS is generated by the product inheritance
174# graph. This allows architecture products to provide headers for the
175# devices using that architecture. For example,
176# hardware/ti/omap4xxx/omap4.mk will specify
177# PRODUCT_VENDOR_KERNEL_HEADERS variable that specify where the omap4
178# specific headers are, e.g. hardware/ti/omap4xxx/kernel-headers.
179# The build system then combines all the values specified by all the
180# PRODUCT_VENDOR_KERNEL_HEADERS directives in the product inheritance
181# tree and then exports a TARGET_PRODUCT_KERNEL_HEADERS variable.
182#
183# The layout of subdirs in any of the kernel-headers dir should mirror the
184# layout of the kernel include/ directory. For example,
185# device/samsung/tuna/kernel-headers/linux/,
186# hardware/ti/omap4xxx/kernel-headers/media/,
187# etc.
188#
189# NOTE: These directories MUST contain post-processed headers using the
190# bionic/libc/kernel/clean_header.py tool. Additionally, the original kernel
191# headers must also be checked in, but in a different subdirectory. By
192# convention, the originals should be checked into original-kernel-headers
193# directory of the same parent dir. For example,
194# device/samsung/tuna/kernel-headers <----- post-processed
195# device/samsung/tuna/original-kernel-headers <----- originals
196#
Dima Zavin4e16f962012-03-14 23:50:17 -0700197TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers))
198
Dima Zavinf9269902012-03-16 09:57:11 -0700199define validate-kernel-headers
200$(if $(firstword $(foreach hdr_dir,$(1),\
201 $(filter-out kernel-headers,$(notdir $(hdr_dir))))),\
202 $(error Kernel header dirs must be end in kernel-headers: $(1)))
203endef
Dima Zavin4e16f962012-03-14 23:50:17 -0700204# also allow the board config to provide additional directories since
205# there could be device/oem/base_hw and device/oem/derived_hw
206# that both are valid devices but derived_hw needs to use kernel headers
207# from base_hw.
208TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS)))
209TARGET_BOARD_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_BOARD_KERNEL_HEADERS))
Dima Zavinf9269902012-03-16 09:57:11 -0700210$(call validate-kernel-headers,$(TARGET_BOARD_KERNEL_HEADERS))
211
212# then add product-inherited includes, to allow for
213# hardware/sivendor/chip/chip.mk to include their own headers
214TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS)))
215TARGET_PRODUCT_KERNEL_HEADERS := $(patsubst %/,%,$(TARGET_PRODUCT_KERNEL_HEADERS))
216$(call validate-kernel-headers,$(TARGET_PRODUCT_KERNEL_HEADERS))
Dima Zavin4e16f962012-03-14 23:50:17 -0700217
Patrick Scott87c86572009-06-23 15:25:06 -0400218# Clean up/verify variables defined by the board config file.
219TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
220TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI))
221ifeq ($(TARGET_CPU_ABI),)
222 $(error No TARGET_CPU_ABI defined by board config: $(board_config_mk))
223endif
David 'Digit' Turner2edfb712009-11-06 15:12:00 -0800224TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2))
Patrick Scott87c86572009-06-23 15:25:06 -0400225
The Android Open Source Project88b60792009-03-03 19:28:42 -0800226# $(1): os/arch
227define select-android-config-h
Ying Wang5bdf3052012-09-20 10:06:33 -0700228build/core/combo/include/arch/$(1)/AndroidConfig.h
The Android Open Source Project88b60792009-03-03 19:28:42 -0800229endef
230
231combo_target := HOST_
Ying Wange1d44c32013-12-27 11:09:36 -0800232combo_2nd_arch_prefix :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800233include $(BUILD_SYSTEM)/combo/select.mk
234
Ying Wang6feb6d52014-04-17 10:03:35 -0700235# Load the 2nd host arch if it's needed.
236ifdef HOST_2ND_ARCH
237combo_target := HOST_
238combo_2nd_arch_prefix := $(HOST_2ND_ARCH_VAR_PREFIX)
239include $(BUILD_SYSTEM)/combo/select.mk
240endif
241
The Android Open Source Project88b60792009-03-03 19:28:42 -0800242# on windows, the tools have .exe at the end, and we depend on the
243# host config stuff being done first
244
245combo_target := TARGET_
Ying Wange1d44c32013-12-27 11:09:36 -0800246combo_2nd_arch_prefix :=
The Android Open Source Project88b60792009-03-03 19:28:42 -0800247include $(BUILD_SYSTEM)/combo/select.mk
248
Ying Wange1d44c32013-12-27 11:09:36 -0800249# Load the 2nd target arch if it's needed.
250ifdef TARGET_2ND_ARCH
251combo_target := TARGET_
252combo_2nd_arch_prefix := $(TARGET_2ND_ARCH_VAR_PREFIX)
253include $(BUILD_SYSTEM)/combo/select.mk
254endif
255
Colin Crossa3339e92014-04-30 18:09:13 -0700256ifdef TARGET_PREFER_32_BIT
257TARGET_PREFER_32_BIT_APPS := true
258TARGET_PREFER_32_BIT_EXECUTABLES := true
259endif
260
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700261ifeq (,$(TARGET_SUPPORTS_32_BIT_APPS)$(TARGET_SUPPORTS_64_BIT_APPS))
262 TARGET_SUPPORTS_32_BIT_APPS := true
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100263endif
264
265# "ro.product.cpu.abilist32" and "ro.product.cpu.abilist64" are
266# comma separated lists of the 32 and 64 bit ABIs (in order of
267# preference) that the target supports. If TARGET_CPU_ABI_LIST_{32,64}_BIT
268# are defined by the board config, we use them. Else, we construct
269# these lists based on whether TARGET_IS_64_BIT is set.
270#
271# Note that this assumes that the 2ND_CPU_ABI for a 64 bit target
272# is always 32 bits. If this isn't the case, these variables should
Brian Carlstromd7950462014-06-16 16:51:42 -0700273# be overriden in the board configuration.
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100274ifeq (,$(TARGET_CPU_ABI_LIST_64_BIT))
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700275 ifeq (true|true,$(TARGET_IS_64_BIT)|$(TARGET_SUPPORTS_64_BIT_APPS))
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100276 TARGET_CPU_ABI_LIST_64_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2)
277 endif
278endif
279
280ifeq (,$(TARGET_CPU_ABI_LIST_32_BIT))
281 ifneq (true,$(TARGET_IS_64_BIT))
282 TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_CPU_ABI) $(TARGET_CPU_ABI2)
283 else
Colin Cross2a4f0ff2014-04-30 18:18:02 -0700284 ifeq (true,$(TARGET_SUPPORTS_32_BIT_APPS))
285 # For a 64 bit target, assume that the 2ND_CPU_ABI
286 # is a 32 bit ABI.
287 TARGET_CPU_ABI_LIST_32_BIT := $(TARGET_2ND_CPU_ABI) $(TARGET_2ND_CPU_ABI2)
288 endif
289 endif
290endif
291
292# "ro.product.cpu.abilist" is a comma separated list of ABIs (in order
293# of preference) that the target supports. If a TARGET_CPU_ABI_LIST
294# is specified by the board configuration, we use that. If not, we
295# build a list out of the TARGET_CPU_ABIs specified by the config.
296ifeq (,$(TARGET_CPU_ABI_LIST))
297 ifeq ($(TARGET_IS_64_BIT)|$(TARGET_PREFER_32_BIT_APPS),true|true)
298 TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_32_BIT) $(TARGET_CPU_ABI_LIST_64_BIT)
299 else
300 TARGET_CPU_ABI_LIST := $(TARGET_CPU_ABI_LIST_64_BIT) $(TARGET_CPU_ABI_LIST_32_BIT)
Narayan Kamath7303ebd2014-04-07 11:01:54 +0100301 endif
302endif
303
304# Strip whitespace from the ABI list string.
305TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST)))
306TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT)))
307TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT)))
308
Ying Wangdf2b4b32012-01-12 16:38:17 -0800309# Compute TARGET_TOOLCHAIN_ROOT from TARGET_TOOLS_PREFIX
310# if only TARGET_TOOLS_PREFIX is passed to the make command.
311ifndef TARGET_TOOLCHAIN_ROOT
312TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLS_PREFIX)))
313TARGET_TOOLCHAIN_ROOT := $(patsubst %/, %, $(dir $(TARGET_TOOLCHAIN_ROOT)))
314TARGET_TOOLCHAIN_ROOT := $(wildcard $(TARGET_TOOLCHAIN_ROOT))
315endif
316
Andrew Hsieh906cb782013-09-10 17:37:14 +0800317# Normalize WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK
318ifeq ($(strip $(WITH_STATIC_ANALYZER)),0)
319 WITH_STATIC_ANALYZER :=
320endif
321ifeq ($(strip $(WITH_SYNTAX_CHECK)),0)
322 WITH_SYNTAX_CHECK :=
323endif
324
325# Disable WITH_STATIC_ANALYZER and WITH_SYNTAX_CHECK if tool can't be found
Andrew Hsiehc4f7fba2014-03-03 16:53:17 +0800326SYNTAX_TOOLS_PREFIX := prebuilts/misc/$(HOST_PREBUILT_TAG)/analyzer/bin
Andrew Hsieh906cb782013-09-10 17:37:14 +0800327ifneq ($(strip $(WITH_STATIC_ANALYZER)),)
328 ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer),)
329 $(warning *** Disable WITH_STATIC_ANALYZER because $(SYNTAX_TOOLS_PREFIX)/ccc-analyzer does not exist)
330 WITH_STATIC_ANALYZER :=
331 endif
332endif
Andrew Hsiehe7c2d142013-08-27 17:55:46 +0800333ifneq ($(strip $(WITH_SYNTAX_CHECK)),)
334 ifeq ($(wildcard $(SYNTAX_TOOLS_PREFIX)/ccc-syntax),)
335 $(warning *** Disable WITH_SYNTAX_CHECK because $(SYNTAX_TOOLS_PREFIX)/ccc-syntax does not exist)
336 WITH_SYNTAX_CHECK :=
337 endif
338endif
339
Andrew Hsieh906cb782013-09-10 17:37:14 +0800340# WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK
341ifneq ($(strip $(WITH_STATIC_ANALYZER)),)
342 ifneq ($(strip $(WITH_SYNTAX_CHECK)),)
343 $(warning *** Disable WITH_SYNTAX_CHECK in the presence of static analyzer WITH_STATIC_ANALYZER)
344 WITH_SYNTAX_CHECK :=
345 endif
346endif
347
The Android Open Source Project88b60792009-03-03 19:28:42 -0800348# Pick a Java compiler.
349include $(BUILD_SYSTEM)/combo/javac.mk
350
351# ---------------------------------------------------------------
352# Check that the configuration is current. We check that
353# BUILD_ENV_SEQUENCE_NUMBER is current against this value.
354# Don't fail if we're called from envsetup, so they have a
355# chance to update their environment.
356
357ifeq (,$(strip $(CALLED_FROM_SETUP)))
358ifneq (,$(strip $(BUILD_ENV_SEQUENCE_NUMBER)))
359ifneq ($(BUILD_ENV_SEQUENCE_NUMBER),$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER))
360$(warning BUILD_ENV_SEQUENCE_NUMBER is set incorrectly.)
361$(info *** If you use envsetup/lunch/choosecombo:)
362$(info *** - Re-execute envsetup (". envsetup.sh"))
363$(info *** - Re-run lunch or choosecombo)
364$(info *** If you use buildspec.mk:)
365$(info *** - Look at buildspec.mk.default to see what has changed)
366$(info *** - Update BUILD_ENV_SEQUENCE_NUMBER to "$(CORRECT_BUILD_ENV_SEQUENCE_NUMBER)")
367$(error bailing..)
368endif
369endif
370endif
371
372
373# ---------------------------------------------------------------
374# Generic tools.
Yohann Rousselabee3a92015-03-10 16:50:55 +0100375JACK := $(HOST_OUT_EXECUTABLES)/jack
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200376JACK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack.jar
Yohann Roussel77cbe102015-04-14 18:38:11 +0200377JACK_LAUNCHER_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jack-launcher.jar
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200378JILL_JAR := $(HOST_OUT_JAVA_LIBRARIES)/jill.jar
379JACK_MULTIDEX_DEFAULT_PREPROCESSOR := frameworks/multidex/library/resources/JACK-INF/legacyMultidexInstallation.jpp
The Android Open Source Project88b60792009-03-03 19:28:42 -0800380
Ying Wang63741532014-05-16 09:37:23 -0700381LEX := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/flex/flex-2.5.39
Ying Wang854be682013-04-05 18:02:16 -0700382# The default PKGDATADIR built in the prebuilt bison is a relative path
383# external/bison/data.
384# To run bison from elsewhere you need to set up enviromental variable
385# BISON_PKGDATADIR.
386BISON_PKGDATADIR := $(PWD)/external/bison/data
Ying Wang6feb6d52014-04-17 10:03:35 -0700387BISON := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/bison/bison
Ying Wang854be682013-04-05 18:02:16 -0700388YACC := $(BISON) -d
389
Ying Wang7b913ce2014-06-05 19:05:47 -0700390YASM := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/yasm/yasm
391
The Android Open Source Project88b60792009-03-03 19:28:42 -0800392DOXYGEN:= doxygen
393AAPT := $(HOST_OUT_EXECUTABLES)/aapt$(HOST_EXECUTABLE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800394AIDL := $(HOST_OUT_EXECUTABLES)/aidl$(HOST_EXECUTABLE_SUFFIX)
Wink Savillee7890832010-11-05 11:28:51 -0700395PROTOC := $(HOST_OUT_EXECUTABLES)/aprotoc$(HOST_EXECUTABLE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800396SIGNAPK_JAR := $(HOST_OUT_JAVA_LIBRARIES)/signapk$(COMMON_JAVA_PACKAGE_SUFFIX)
397MKBOOTFS := $(HOST_OUT_EXECUTABLES)/mkbootfs$(HOST_EXECUTABLE_SUFFIX)
Doug Zongker8b70e8c2009-05-27 09:14:25 -0700398MINIGZIP := $(HOST_OUT_EXECUTABLES)/minigzip$(HOST_EXECUTABLE_SUFFIX)
Bjorn Andersson612e2cd2012-11-25 16:53:44 -0800399ifeq (,$(strip $(BOARD_CUSTOM_MKBOOTIMG)))
The Android Open Source Project88b60792009-03-03 19:28:42 -0800400MKBOOTIMG := $(HOST_OUT_EXECUTABLES)/mkbootimg$(HOST_EXECUTABLE_SUFFIX)
Bjorn Andersson612e2cd2012-11-25 16:53:44 -0800401else
402MKBOOTIMG := $(BOARD_CUSTOM_MKBOOTIMG)
403endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800404APICHECK := $(HOST_OUT_EXECUTABLES)/apicheck$(HOST_EXECUTABLE_SUFFIX)
405FS_GET_STATS := $(HOST_OUT_EXECUTABLES)/fs_get_stats$(HOST_EXECUTABLE_SUFFIX)
Colin Cross9dd4ba82010-08-03 14:43:15 -0700406MAKE_EXT4FS := $(HOST_OUT_EXECUTABLES)/make_ext4fs$(HOST_EXECUTABLE_SUFFIX)
Ying Wang542903a2010-11-17 15:40:38 -0800407MKEXTUSERIMG := $(HOST_OUT_EXECUTABLES)/mkuserimg.sh
Mohamad Ayyash68946952015-03-03 12:30:37 -0800408ifeq ($(HOST_OS),linux)
409MAKE_SQUASHFS := $(HOST_OUT_EXECUTABLES)/mksquashfs$(HOST_EXECUTABLE_SUFFIX)
410MKSQUASHFSUSERIMG := $(HOST_OUT_EXECUTABLES)/mksquashfsimage.sh
411else
412MAKE_SQUASHFS :=
413MKSQUASHFSUSERIMG :=
414endif
JP Abgrall5bfed5a2014-06-16 14:17:40 -0700415MAKE_F2FS := $(HOST_OUT_EXECUTABLES)/make_f2fs$(HOST_EXECUTABLE_SUFFIX)
416MKF2FSUSERIMG := $(HOST_OUT_EXECUTABLES)/mkf2fsuserimg.sh
Ying Wang69e9b4d2012-11-26 18:10:23 -0800417SIMG2IMG := $(HOST_OUT_EXECUTABLES)/simg2img$(HOST_EXECUTABLE_SUFFIX)
418E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800419MKTARBALL := build/tools/mktarball.sh
Colin Cross0a7b2c52010-05-07 02:23:59 -0700420TUNE2FS := $(HOST_OUT_EXECUTABLES)/tune2fs$(HOST_EXECUTABLE_SUFFIX)
421E2FSCK := $(HOST_OUT_EXECUTABLES)/e2fsck$(HOST_EXECUTABLE_SUFFIX)
Steve Howardef5c6402010-05-03 15:01:38 -0700422JARJAR := $(HOST_OUT_JAVA_LIBRARIES)/jarjar.jar
Yohann Roussel28096662015-02-02 12:18:20 +0100423
Yohann Roussel37822c42015-01-09 10:36:40 +0100424ifeq ($(ANDROID_COMPILE_WITH_JACK),true)
425DEFAULT_JACK_ENABLED:=full
426else
427DEFAULT_JACK_ENABLED:=
428endif
Yohann Roussel28096662015-02-02 12:18:20 +0100429ifneq ($(strip $(ANDROID_JACK_VM)),)
430JACK_VM := $(ANDROID_JACK_VM)
431else
432JACK_VM := java
433endif
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200434# call jack
435#
Yohann Roussel28096662015-02-02 12:18:20 +0100436# $(1): vm arguments
437# $(2): jack perf arguments
Yohann Rousselabee3a92015-03-10 16:50:55 +0100438ifneq (,$(strip $(filter dist,$(MAKECMDGOALS))))
439JACK_SERVER_LOG_COMMAND := mkdir -p $(DIST_DIR)/logs/; SERVER_LOG=$(DIST_DIR)/logs/jack-server.log
440endif
Yohann Rousselb4c49cb2014-09-08 14:45:14 +0200441define call-jack
Yohann Roussel77cbe102015-04-14 18:38:11 +0200442$(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 +0200443endef
Yohann Roussel28096662015-02-02 12:18:20 +0100444$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_JACK_VM_ARGS := $(DEFAULT_JACK_VM_ARGS)
Yohann Roussele163b4e2015-04-09 10:10:21 +0000445ifneq ($(ANDROID_JACK_VM_ARGS),)
446DEFAULT_JACK_VM_ARGS := $(ANDROID_JACK_VM_ARGS)
447else
Yohann Rousselabee3a92015-03-10 16:50:55 +0100448DEFAULT_JACK_VM_ARGS := -Dfile.encoding=UTF-8 -Xms2560m -XX:+TieredCompilation
Yohann Roussele163b4e2015-04-09 10:10:21 +0000449endif
450ifneq ($(ANDROID_JACK_EXTRA_ARGS),)
451DEFAULT_JACK_EXTRA_ARGS := $(ANDROID_JACK_EXTRA_ARGS)
452else
Yohann Rousselb6bfb582015-05-13 16:03:28 +0200453DEFAULT_JACK_EXTRA_ARGS := @$(BUILD_SYSTEM)/jack-default.args
Yohann Roussele163b4e2015-04-09 10:10:21 +0000454endif
Yohann Rousselec46a3b2015-03-05 18:35:05 +0100455# Turn off jack warnings by default.
456DEFAULT_JACK_EXTRA_ARGS += --verbose error
Yohann Rousself528e132015-03-13 12:08:26 +0100457
Yohann Roussel76a5e0b2015-03-17 17:03:22 +0100458JILL := java -Xmx3500m -jar $(JILL_JAR)
Joe Onorato2daa2b32009-08-30 13:39:24 -0700459PROGUARD := external/proguard/bin/proguard.sh
Doug Zongker9bd49622009-11-30 14:28:59 -0800460JAVATAGS := build/tools/java-event-log-tags.py
Shih-wei Liaod01fadb2010-10-08 16:57:46 -0700461LLVM_RS_CC := $(HOST_OUT_EXECUTABLES)/llvm-rs-cc$(HOST_EXECUTABLE_SUFFIX)
Stephen Hinese719f282012-11-28 16:52:41 -0800462BCC_COMPAT := $(HOST_OUT_EXECUTABLES)/bcc_compat$(HOST_EXECUTABLE_SUFFIX)
Ying Wang0d570a72012-06-18 18:45:40 -0700463LINT := prebuilts/sdk/tools/lint
Ying Wanga3b75932013-08-14 16:59:00 -0700464RMTYPEDEFS := $(HOST_OUT_EXECUTABLES)/rmtypedefs
Colin Cross8a30f722014-04-28 16:27:32 -0700465APPEND2SIMG := $(HOST_OUT_EXECUTABLES)/append2simg
466VERITY_SIGNER := $(HOST_OUT_EXECUTABLES)/verity_signer
Colin Cross477cf2b2014-04-16 18:49:56 -0700467BUILD_VERITY_TREE := $(HOST_OUT_EXECUTABLES)/build_verity_tree
Geremy Condra740b6632014-07-08 20:07:41 -0700468BOOT_SIGNER := $(HOST_OUT_EXECUTABLES)/boot_signer
David Riley17be3d32015-03-03 08:54:11 -0800469FUTILITY := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/futility/futility
470VBOOT_SIGNER := prebuilts/misc/scripts/vboot_signer/vboot_signer.sh
The Android Open Source Project88b60792009-03-03 19:28:42 -0800471
Raphael9ca16282010-04-16 17:50:09 -0700472# ACP is always for the build OS, not for the host OS
473ACP := $(BUILD_OUT_EXECUTABLES)/acp$(BUILD_EXECUTABLE_SUFFIX)
474
The Android Open Source Project88b60792009-03-03 19:28:42 -0800475# dx is java behind a shell script; no .exe necessary.
476DX := $(HOST_OUT_EXECUTABLES)/dx
The Android Open Source Project88b60792009-03-03 19:28:42 -0800477ZIPALIGN := $(HOST_OUT_EXECUTABLES)/zipalign$(HOST_EXECUTABLE_SUFFIX)
Dmitriy Ivanov4c2d1a62015-04-20 16:59:05 -0700478
479# relocation packer
480RELOCATION_PACKER := prebuilts/misc/$(BUILD_OS)-$(HOST_PREBUILT_ARCH)/relocation_packer/relocation_packer
481
Yuncheol Heo623d7062014-05-20 17:04:16 +0900482FINDBUGS_DIR := external/owasp/sanitizer/tools/findbugs/bin
483FINDBUGS := $(FINDBUGS_DIR)/findbugs
The Android Open Source Project88b60792009-03-03 19:28:42 -0800484EMMA_JAR := external/emma/lib/emma$(COMMON_JAVA_PACKAGE_SUFFIX)
485
Ying Wangdc7fee92014-02-05 18:24:45 -0800486# Tool to merge AndroidManifest.xmls
487ANDROID_MANIFEST_MERGER := java -classpath prebuilts/devtools/tools/lib/manifest-merger.jar com.android.manifmerger.Main merge
488
The Android Open Source Project88b60792009-03-03 19:28:42 -0800489YACC_HEADER_SUFFIX:= .hpp
The Android Open Source Project88b60792009-03-03 19:28:42 -0800490
491# Don't use column under Windows, cygwin or not
492ifeq ($(HOST_OS),windows)
493COLUMN:= cat
494else
495COLUMN:= column
496endif
497
Narayan Kamathab2e2e72013-12-05 15:20:41 +0000498HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
Narayan Kamathab2e2e72013-12-05 15:20:41 +0000499
500ifneq ($(HOST_JDK_TOOLS_JAR),)
Ying Wangec5e7292010-04-26 18:36:52 -0700501ifeq ($(wildcard $(HOST_JDK_TOOLS_JAR)),)
Chris Wren1f115752014-03-07 14:51:56 -0500502$(error Error: could not find jdk tools.jar, please check if your JDK was installed correctly)
Ying Wangec5e7292010-04-26 18:36:52 -0700503endif
The Android Open Source Project88b60792009-03-03 19:28:42 -0800504endif
505
Ying Wang053dccb2011-05-24 15:46:15 -0700506# Is the host JDK 64-bit version?
507HOST_JDK_IS_64BIT_VERSION :=
508ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),)
509HOST_JDK_IS_64BIT_VERSION := true
510endif
511
The Android Open Source Project88b60792009-03-03 19:28:42 -0800512# It's called md5 on Mac OS and md5sum on Linux
513ifeq ($(HOST_OS),darwin)
514MD5SUM:=md5 -q
515else
516MD5SUM:=md5sum
517endif
518
Joe Onorato2a6e0522011-04-08 17:32:52 -0700519APICHECK_CLASSPATH := $(HOST_JDK_TOOLS_JAR)
520APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX)
521APICHECK_CLASSPATH := $(APICHECK_CLASSPATH):$(HOST_OUT_JAVA_LIBRARIES)/jsilver$(COMMON_JAVA_PACKAGE_SUFFIX)
522APICHECK_COMMAND := $(APICHECK) -JXmx1024m -J"classpath $(APICHECK_CLASSPATH)"
523
Ying Wang3c21fe52011-10-04 10:50:08 -0700524# The default key if not set as LOCAL_CERTIFICATE
525ifdef PRODUCT_DEFAULT_DEV_CERTIFICATE
526 DEFAULT_SYSTEM_DEV_CERTIFICATE := $(PRODUCT_DEFAULT_DEV_CERTIFICATE)
527else
528 DEFAULT_SYSTEM_DEV_CERTIFICATE := build/target/product/security/testkey
529endif
530
The Android Open Source Project88b60792009-03-03 19:28:42 -0800531# ###############################################################
532# Set up final options.
533# ###############################################################
534
535HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800536HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
537
538HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800539HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
540
541TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800542TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
543
544TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800545TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
546
547HOST_GLOBAL_LD_DIRS += -L$(HOST_OUT_INTERMEDIATE_LIBRARIES)
548TARGET_GLOBAL_LD_DIRS += -L$(TARGET_OUT_INTERMEDIATE_LIBRARIES)
549
550HOST_PROJECT_INCLUDES:= $(SRC_HEADERS) $(SRC_HOST_HEADERS) $(HOST_OUT_HEADERS)
Dima Zavin4e16f962012-03-14 23:50:17 -0700551TARGET_PROJECT_INCLUDES:= $(SRC_HEADERS) $(TARGET_OUT_HEADERS) \
Dima Zavin8e4042c2012-03-30 10:24:31 -0700552 $(TARGET_DEVICE_KERNEL_HEADERS) $(TARGET_BOARD_KERNEL_HEADERS) \
553 $(TARGET_PRODUCT_KERNEL_HEADERS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800554
555# Many host compilers don't support these flags, so we have to make
556# sure to only specify them for the target compilers checked in to
Jeff Browne33ba4c2011-07-11 22:11:46 -0700557# the source tree.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800558TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS)
559TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800560
Dave Bort95282482009-04-23 18:44:55 -0700561HOST_GLOBAL_CFLAGS += $(HOST_RELEASE_CFLAGS)
562HOST_GLOBAL_CPPFLAGS += $(HOST_RELEASE_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800563
Dave Bort95282482009-04-23 18:44:55 -0700564TARGET_GLOBAL_CFLAGS += $(TARGET_RELEASE_CFLAGS)
565TARGET_GLOBAL_CPPFLAGS += $(TARGET_RELEASE_CPPFLAGS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800566
Ying Wange1d44c32013-12-27 11:09:36 -0800567ifdef TARGET_2ND_ARCH
Ying Wang9fb35262014-02-21 16:17:05 -0800568$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
569$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
570$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
571$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
572$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_LD_DIRS += -L$($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_INTERMEDIATE_LIBRARIES)
573$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_PROJECT_INCLUDES := $(TARGET_PROJECT_INCLUDES)
574$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $(TARGET_ERROR_FLAGS)
575$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $(TARGET_ERROR_FLAGS)
576$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CFLAGS)
577$(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_GLOBAL_CPPFLAGS += $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_RELEASE_CPPFLAGS)
Ying Wange1d44c32013-12-27 11:09:36 -0800578endif
579
Ying Wang6feb6d52014-04-17 10:03:35 -0700580ifdef HOST_2ND_ARCH
581$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $(COMMON_GLOBAL_CFLAGS)
582$(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS += $(COMMON_RELEASE_CFLAGS)
583$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $(COMMON_GLOBAL_CPPFLAGS)
584$(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS += $(COMMON_RELEASE_CPPFLAGS)
585$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_LD_DIRS += -L$($(HOST_2ND_ARCH_VAR_PREFIX)HOST_OUT_INTERMEDIATE_LIBRARIES)
586$(HOST_2ND_ARCH_VAR_PREFIX)HOST_PROJECT_INCLUDES := $(HOST_PROJECT_INCLUDES)
587$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CFLAGS)
588$(HOST_2ND_ARCH_VAR_PREFIX)HOST_GLOBAL_CPPFLAGS += $($(HOST_2ND_ARCH_VAR_PREFIX)HOST_RELEASE_CPPFLAGS)
589endif
590
Mike Lockwoodc73018c2013-08-06 16:07:13 -0700591# allow overriding default Java libraries on a per-target basis
592ifeq ($(TARGET_DEFAULT_JAVA_LIBRARIES),)
Ying Wang14c975b2014-07-21 14:42:29 -0700593 TARGET_DEFAULT_JAVA_LIBRARIES := core-libart core-junit ext framework
Mike Lockwoodc73018c2013-08-06 16:07:13 -0700594endif
595
Ian Rogers5d186ae2014-04-18 15:23:40 -0700596# Flags for DEX2OAT
597DEX2OAT_TARGET_ARCH := $(TARGET_ARCH)
Christopher Ferris9de4d5e2015-03-06 10:19:12 -0800598ifeq ($(TARGET_CPU_VARIANT),)
599ifeq ($(TARGET_ARCH_VARIANT),)
600DEX2OAT_TARGET_CPU_VARIANT := default
601else
602DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_ARCH_VARIANT)
603endif
604else
Ian Rogers5d186ae2014-04-18 15:23:40 -0700605DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_CPU_VARIANT)
Christopher Ferris9de4d5e2015-03-06 10:19:12 -0800606endif
Ying Wang8c7e74e2014-03-20 12:13:10 -0700607DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default
Ying Wang8c7e74e2014-03-20 12:13:10 -0700608
Ying Wangb9aa5d42014-05-13 13:57:28 -0700609ifdef TARGET_2ND_ARCH
610$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_ARCH := $(TARGET_2ND_ARCH)
611$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_CPU_VARIANT := $(TARGET_2ND_CPU_VARIANT)
612$(TARGET_2ND_ARCH_VAR_PREFIX)DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES := default
Ying Wangb9aa5d42014-05-13 13:57:28 -0700613endif
614
Ying Wang1f982832014-02-06 18:08:44 -0800615# define clang/llvm tools and global flags
616include $(BUILD_SYSTEM)/clang/config.mk
yroussel13190052012-01-12 16:09:06 +0100617
The Android Open Source Project88b60792009-03-03 19:28:42 -0800618# ###############################################################
619# Collect a list of the SDK versions that we could compile against
620# For use with the LOCAL_SDK_VERSION variable for include $(BUILD_PACKAGE)
621# ###############################################################
622
Ying Wang9978faf2011-11-29 10:24:27 -0800623HISTORICAL_SDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/sdk
Ying Wangb50bd7f2011-11-29 11:20:16 -0800624HISTORICAL_NDK_VERSIONS_ROOT := $(TOPDIR)prebuilts/ndk
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700625
Ying Wang589e8c52015-05-19 16:03:57 -0700626# The path where app can reference the support library resources.
627ifdef TARGET_BUILD_APPS
628SUPPORT_LIBRARY_ROOT := $(HISTORICAL_SDK_VERSIONS_ROOT)/current/support
629else
630SUPPORT_LIBRARY_ROOT := frameworks/support
631endif
632
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700633# Historical SDK version N is stored in $(HISTORICAL_SDK_VERSIONS_ROOT)/N.
634# The 'current' version is whatever this source tree is.
The Android Open Source Project88b60792009-03-03 19:28:42 -0800635#
636# sgrax is the opposite of xargs. It takes the list of args and puts them
637# on each line for sort to process.
638# 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 -0800639
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700640# Numerically sort a list of numbers
641# $(1): the list of numbers to be sorted
642define numerically_sort
643$(shell function sgrax() { \
644 while [ -n "$$1" ] ; do echo $$1 ; shift ; done \
645 } ; \
646 ( sgrax $(1) | sort -g ) )
647endef
648
Ying Wanga1ff6292012-05-10 18:07:33 -0700649TARGET_AVAILABLE_SDK_VERSIONS := $(call numerically_sort,\
Ying Wang0f6f4ca2010-06-09 10:26:26 -0700650 $(patsubst $(HISTORICAL_SDK_VERSIONS_ROOT)/%/android.jar,%, \
Ying Wang2f7b92c2014-07-21 13:44:06 -0700651 $(wildcard $(HISTORICAL_SDK_VERSIONS_ROOT)/*/android.jar)))
652
653# We don't have prebuilt system_current SDK yet.
Ying Wang02a83e92014-09-04 12:18:51 -0700654TARGET_AVAILABLE_SDK_VERSIONS := $(TARGET_AVAILABLE_SDK_VERSIONS)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800655
Joe Onorato15ee93b2011-04-08 15:03:48 -0700656INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.txt
Hui Shue8af17e2014-02-21 14:18:19 -0800657INTERNAL_PLATFORM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/removed.txt
Ying Wang829f68b2014-06-26 17:54:28 -0700658INTERNAL_PLATFORM_SYSTEM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-api.txt
659INTERNAL_PLATFORM_SYSTEM_REMOVED_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/system-removed.txt
Gary King1e80c292010-03-08 17:16:57 -0800660
Bruce Bearef1582e52010-10-14 14:31:48 -0700661# This is the standard way to name a directory containing prebuilt target
662# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
Jeff Browne33ba4c2011-07-11 22:11:46 -0700663TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
Colin Cross12d18eb2014-05-22 12:01:23 -0700664ifdef TARGET_2ND_ARCH
665TARGET_2ND_PREBUILT_TAG := android-$(TARGET_2ND_ARCH)
666endif
Bruce Bearef1582e52010-10-14 14:31:48 -0700667
Tim Murray1a6f09a2013-03-05 11:07:15 -0800668# Set up RS prebuilt variables for compatibility library
669
Tim Murraydc1d0ab2014-09-30 15:08:03 -0700670RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc
Tim Murray1a6f09a2013-03-05 11:07:15 -0800671RS_PREBUILT_LIBPATH := -L prebuilts/ndk/8/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib
672RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a
673
Miao Wange4359cf2015-01-07 18:18:41 -0800674# API Level lists for Renderscript Compat lib.
675RSCOMPAT_32BIT_ONLY_API_LEVELS := 8 9 10 11 12 13 14 15 16 17 18 19 20
Miao Wangec27a892014-11-20 11:05:18 -0800676RSCOMPAT_NO_USAGEIO_API_LEVELS := 8 9 10 11 12 13
Miao Wange4359cf2015-01-07 18:18:41 -0800677
Ying Wang854be682013-04-05 18:02:16 -0700678include $(BUILD_SYSTEM)/dumpvar.mk