blob: d38fad6248786e2e35ffba8dead92d03e31f07d1 [file] [log] [blame]
Ian Rogersafd9acc2014-06-17 08:21:54 -07001#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Igor Murashkin37743352014-11-13 14:38:00 -080017ifndef ART_ANDROID_COMMON_BUILD_MK
18ART_ANDROID_COMMON_BUILD_MK = true
Ian Rogersafd9acc2014-06-17 08:21:54 -070019
20include art/build/Android.common.mk
Igor Murashkin37743352014-11-13 14:38:00 -080021include art/build/Android.common_utils.mk
Ian Rogersafd9acc2014-06-17 08:21:54 -070022
23# These can be overridden via the environment or by editing to
24# enable/disable certain build configuration.
25#
26# For example, to disable everything but the host debug build you use:
27#
28# (export ART_BUILD_TARGET_NDEBUG=false && export ART_BUILD_TARGET_DEBUG=false && export ART_BUILD_HOST_NDEBUG=false && ...)
29#
30# Beware that tests may use the non-debug build for performance, notable 055-enum-performance
31#
32ART_BUILD_TARGET_NDEBUG ?= true
33ART_BUILD_TARGET_DEBUG ?= true
34ART_BUILD_HOST_NDEBUG ?= true
35ART_BUILD_HOST_DEBUG ?= true
Calin Juravle676ff8e2015-07-24 16:45:26 +010036
Roland Levillainb5390f72016-07-04 16:59:53 +010037# Set this to change what opt level ART is built at.
Alex Light8069d9f2015-10-14 16:21:17 -070038ART_DEBUG_OPT_FLAG ?= -O2
39ART_NDEBUG_OPT_FLAG ?= -O3
40
Calin Juravle676ff8e2015-07-24 16:45:26 +010041# Enable the static builds only for checkbuilds.
42ifneq (,$(filter checkbuild,$(MAKECMDGOALS)))
43 ART_BUILD_HOST_STATIC ?= true
44else
45 ART_BUILD_HOST_STATIC ?= false
46endif
Ian Rogersafd9acc2014-06-17 08:21:54 -070047
Calin Juravle4895ea42015-07-02 18:21:14 +010048# Asan does not support static linkage
49ifdef SANITIZE_HOST
50 ART_BUILD_HOST_STATIC := false
51endif
52
Calin Juravle0e26f462015-07-09 15:48:03 +010053ifneq ($(HOST_OS),linux)
Calin Juravle4895ea42015-07-02 18:21:14 +010054 ART_BUILD_HOST_STATIC := false
55endif
56
Ian Rogersafd9acc2014-06-17 08:21:54 -070057ifeq ($(ART_BUILD_TARGET_NDEBUG),false)
58$(info Disabling ART_BUILD_TARGET_NDEBUG)
59endif
60ifeq ($(ART_BUILD_TARGET_DEBUG),false)
61$(info Disabling ART_BUILD_TARGET_DEBUG)
62endif
63ifeq ($(ART_BUILD_HOST_NDEBUG),false)
64$(info Disabling ART_BUILD_HOST_NDEBUG)
65endif
66ifeq ($(ART_BUILD_HOST_DEBUG),false)
67$(info Disabling ART_BUILD_HOST_DEBUG)
68endif
Calin Juravle65e069d2015-06-08 10:35:24 +010069ifeq ($(ART_BUILD_HOST_STATIC),true)
70$(info Enabling ART_BUILD_HOST_STATIC)
71endif
Ian Rogersafd9acc2014-06-17 08:21:54 -070072
Hiroshi Yamauchi093f1b42015-07-14 12:20:30 -070073ifeq ($(ART_TEST_DEBUG_GC),true)
74 ART_DEFAULT_GC_TYPE := SS
75 ART_USE_TLAB := true
76endif
77
Ian Rogersafd9acc2014-06-17 08:21:54 -070078#
Ian Rogersafd9acc2014-06-17 08:21:54 -070079# Used to change the default GC. Valid values are CMS, SS, GSS. The default is CMS.
80#
Hiroshi Yamauchi3e781622015-02-25 12:52:34 -080081ART_DEFAULT_GC_TYPE ?= CMS
82art_default_gc_type_cflags := -DART_DEFAULT_GC_TYPE_IS_$(ART_DEFAULT_GC_TYPE)
Ian Rogersafd9acc2014-06-17 08:21:54 -070083
Colin Crossecf75a62016-07-28 16:01:42 -070084ART_HOST_CLANG := true
85ART_TARGET_CLANG := true
Ian Rogers6f3dbba2014-10-14 17:41:57 -070086
87ART_CPP_EXTENSION := .cc
88
89ART_C_INCLUDES := \
90 external/gtest/include \
Jeff Hao848f70a2014-01-15 13:49:50 -080091 external/icu/icu4c/source/common \
Mathieu Chartierceb07b32015-12-10 09:33:21 -080092 external/lz4/lib \
Dmitriy Ivanov6130f732015-05-27 15:34:38 -070093 external/valgrind/include \
94 external/valgrind \
Ian Rogers6f3dbba2014-10-14 17:41:57 -070095 external/vixl/src \
96 external/zlib \
Ian Rogers6f3dbba2014-10-14 17:41:57 -070097
Andreas Gampe4382f1e2015-08-05 01:08:53 +000098# We optimize Thread::Current() with a direct TLS access. This requires access to a private
99# Bionic header.
100# Note: technically we only need this on device, but this avoids the duplication of the includes.
101ART_C_INCLUDES += bionic/libc/private
102
Colin Crossecf75a62016-07-28 16:01:42 -0700103art_cflags :=
104
105# Warn about thread safety violations with clang.
106art_cflags += -Wthread-safety -Wthread-safety-negative
107
108# Warn if switch fallthroughs aren't annotated.
109art_cflags += -Wimplicit-fallthrough
110
111# Enable float equality warnings.
112art_cflags += -Wfloat-equal
113
114# Enable warning of converting ints to void*.
115art_cflags += -Wint-to-void-pointer-cast
116
117# Enable warning of wrong unused annotations.
118art_cflags += -Wused-but-marked-unused
119
120# Enable warning for deprecated language features.
121art_cflags += -Wdeprecated
122
123# Enable warning for unreachable break & return.
124art_cflags += -Wunreachable-code-break -Wunreachable-code-return
125
126# Bug: http://b/29823425 Disable -Wconstant-conversion and
127# -Wundefined-var-template for Clang update to r271374
128art_cflags += -Wno-constant-conversion -Wno-undefined-var-template
129
130# Enable missing-noreturn only on non-Mac. As lots of things are not implemented for Apple, it's
131# a pain.
132ifneq ($(HOST_OS),darwin)
133 art_cflags += -Wmissing-noreturn
134endif
135
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700136# Base set of cflags used by all things ART.
Colin Crossecf75a62016-07-28 16:01:42 -0700137art_cflags += \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700138 -fno-rtti \
139 -std=gnu++11 \
140 -ggdb3 \
141 -Wall \
142 -Werror \
143 -Wextra \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700144 -Wstrict-aliasing \
145 -fstrict-aliasing \
146 -Wunreachable-code \
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800147 -Wredundant-decls \
148 -Wshadow \
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800149 -Wunused \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700150 -fvisibility=protected \
151 $(art_default_gc_type_cflags)
152
Alex Light50fa9932015-08-10 15:30:07 -0700153# The architectures the compiled tools are able to run on. Setting this to 'all' will cause all
154# architectures to be included.
155ART_TARGET_CODEGEN_ARCHS ?= all
156ART_HOST_CODEGEN_ARCHS ?= all
157
158ifeq ($(ART_TARGET_CODEGEN_ARCHS),all)
159 ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_SUPPORTED_ARCH) $(ART_HOST_SUPPORTED_ARCH))
160 # We need to handle the fact that some compiler tests mix code from different architectures.
161 ART_TARGET_COMPILER_TESTS ?= true
162else
163 ART_TARGET_COMPILER_TESTS := false
164 ifeq ($(ART_TARGET_CODEGEN_ARCHS),svelte)
165 ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_ARCH_64) $(ART_TARGET_ARCH_32))
166 endif
167endif
168ifeq ($(ART_HOST_CODEGEN_ARCHS),all)
169 ART_HOST_CODEGEN_ARCHS := $(sort $(ART_TARGET_SUPPORTED_ARCH) $(ART_HOST_SUPPORTED_ARCH))
170 ART_HOST_COMPILER_TESTS ?= true
171else
172 ART_HOST_COMPILER_TESTS := false
173 ifeq ($(ART_HOST_CODEGEN_ARCHS),svelte)
174 ART_HOST_CODEGEN_ARCHS := $(sort $(ART_TARGET_CODEGEN_ARCHS) $(ART_HOST_ARCH_64) $(ART_HOST_ARCH_32))
175 endif
176endif
177
178ifneq (,$(filter arm64,$(ART_TARGET_CODEGEN_ARCHS)))
179 ART_TARGET_CODEGEN_ARCHS += arm
180endif
181ifneq (,$(filter mips64,$(ART_TARGET_CODEGEN_ARCHS)))
182 ART_TARGET_CODEGEN_ARCHS += mips
183endif
184ifneq (,$(filter x86_64,$(ART_TARGET_CODEGEN_ARCHS)))
185 ART_TARGET_CODEGEN_ARCHS += x86
186endif
187ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_CODEGEN_ARCHS))
188ifneq (,$(filter arm64,$(ART_HOST_CODEGEN_ARCHS)))
189 ART_HOST_CODEGEN_ARCHS += arm
190endif
191ifneq (,$(filter mips64,$(ART_HOST_CODEGEN_ARCHS)))
192 ART_HOST_CODEGEN_ARCHS += mips
193endif
194ifneq (,$(filter x86_64,$(ART_HOST_CODEGEN_ARCHS)))
195 ART_HOST_CODEGEN_ARCHS += x86
196endif
197ART_HOST_CODEGEN_ARCHS := $(sort $(ART_HOST_CODEGEN_ARCHS))
198
199# Base set of cflags used by target build only
200art_target_cflags := \
201 $(foreach target_arch,$(strip $(ART_TARGET_CODEGEN_ARCHS)), -DART_ENABLE_CODEGEN_$(target_arch))
202# Base set of cflags used by host build only
203art_host_cflags := \
204 $(foreach host_arch,$(strip $(ART_HOST_CODEGEN_ARCHS)), -DART_ENABLE_CODEGEN_$(host_arch))
205
Roland Levillain12bd7212015-06-04 17:50:27 +0100206# Base set of asflags used by all things ART.
207art_asflags :=
208
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800209# Missing declarations: too many at the moment, as we use "extern" quite a bit.
210# -Wmissing-declarations \
211
212
Mathieu Chartiercd195fe2014-11-25 18:36:01 -0800213
214ifdef ART_IMT_SIZE
215 art_cflags += -DIMT_SIZE=$(ART_IMT_SIZE)
216else
Matthew Gharrity013e3f32016-06-16 11:49:23 -0700217 # Default is 43
218 art_cflags += -DIMT_SIZE=43
Mathieu Chartiercd195fe2014-11-25 18:36:01 -0800219endif
220
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800221ifeq ($(ART_HEAP_POISONING),true)
222 art_cflags += -DART_HEAP_POISONING=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100223 art_asflags += -DART_HEAP_POISONING=1
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800224endif
225
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700226#
227# Used to change the read barrier type. Valid values are BAKER, BROOKS, TABLELOOKUP.
228# The default is BAKER.
229#
230ART_READ_BARRIER_TYPE ?= BAKER
231
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800232ifeq ($(ART_USE_READ_BARRIER),true)
233 art_cflags += -DART_USE_READ_BARRIER=1
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700234 art_cflags += -DART_READ_BARRIER_TYPE_IS_$(ART_READ_BARRIER_TYPE)=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100235 art_asflags += -DART_USE_READ_BARRIER=1
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700236 art_asflags += -DART_READ_BARRIER_TYPE_IS_$(ART_READ_BARRIER_TYPE)=1
Hiroshi Yamauchi37ba27a2016-01-26 14:06:14 -0800237
238 # Temporarily override -fstack-protector-strong with -fstack-protector to avoid a major
239 # slowdown with the read barrier config. b/26744236.
240 art_cflags += -fstack-protector
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800241endif
242
Hiroshi Yamauchi79bd2bf2015-03-20 10:28:34 -0700243ifeq ($(ART_USE_TLAB),true)
244 art_cflags += -DART_USE_TLAB=1
245endif
246
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700247# Cflags for non-debug ART and ART tools.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700248art_non_debug_cflags := \
Alex Light8069d9f2015-10-14 16:21:17 -0700249 $(ART_NDEBUG_OPT_FLAG)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700250
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700251# Cflags for debug ART and ART tools.
252art_debug_cflags := \
Alex Light8069d9f2015-10-14 16:21:17 -0700253 $(ART_DEBUG_OPT_FLAG) \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700254 -DDYNAMIC_ANNOTATIONS_ENABLED=1 \
Alexandre Rames2ea91532016-08-11 17:04:14 +0100255 -DVIXL_DEBUG \
Ian Rogers50fe6da2014-10-17 01:18:08 -0700256 -UNDEBUG
Stephen Hines67a43382014-07-17 01:49:18 -0700257
Roland Levillainb5390f72016-07-04 16:59:53 +0100258# Assembler flags for non-debug ART and ART tools.
259art_non_debug_asflags :=
260
261# Assembler flags for debug ART and ART tools.
262art_debug_asflags := -UNDEBUG
263
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700264art_host_non_debug_cflags := $(art_non_debug_cflags)
265art_target_non_debug_cflags := $(art_non_debug_cflags)
Stephen Hines67a43382014-07-17 01:49:18 -0700266
Andreas Gamped1262282016-08-11 18:35:58 -0700267###
268# Frame size
269###
270
271# Size of the stack-overflow gap.
272ART_STACK_OVERFLOW_GAP_arm := 8192
273ART_STACK_OVERFLOW_GAP_arm64 := 8192
274ART_STACK_OVERFLOW_GAP_mips := 16384
275ART_STACK_OVERFLOW_GAP_mips64 := 16384
276ART_STACK_OVERFLOW_GAP_x86 := 8192
277ART_STACK_OVERFLOW_GAP_x86_64 := 8192
278ART_COMMON_STACK_OVERFLOW_DEFINES := \
279 -DART_STACK_OVERFLOW_GAP_arm=$(ART_STACK_OVERFLOW_GAP_arm) \
280 -DART_STACK_OVERFLOW_GAP_arm64=$(ART_STACK_OVERFLOW_GAP_arm64) \
281 -DART_STACK_OVERFLOW_GAP_mips=$(ART_STACK_OVERFLOW_GAP_mips) \
282 -DART_STACK_OVERFLOW_GAP_mips64=$(ART_STACK_OVERFLOW_GAP_mips64) \
283 -DART_STACK_OVERFLOW_GAP_x86=$(ART_STACK_OVERFLOW_GAP_x86) \
284 -DART_STACK_OVERFLOW_GAP_x86_64=$(ART_STACK_OVERFLOW_GAP_x86_64) \
285
286# Larger frame-size for host builds today.
287ART_HOST_FRAME_SIZE_LIMIT := 2700
288ART_TARGET_FRAME_SIZE_LIMIT := 1736
289
290# Frame size adaptations for instrumented builds.
291ifdef SANITIZE_TARGET
292 ART_TARGET_FRAME_SIZE_LIMIT := 6400
293endif
294
295# Add frame-size checks for non-debug builds.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700296ifeq ($(HOST_OS),linux)
Dan Albert31fb2602014-09-30 22:10:10 -0700297 ifneq ($(ART_COVERAGE),true)
298 ifneq ($(NATIVE_COVERAGE),true)
Andreas Gamped1262282016-08-11 18:35:58 -0700299 art_host_non_debug_cflags += -Wframe-larger-than=$(ART_HOST_FRAME_SIZE_LIMIT)
300 art_target_non_debug_cflags += -Wframe-larger-than=$(ART_TARGET_FRAME_SIZE_LIMIT)
Dan Albert31fb2602014-09-30 22:10:10 -0700301 endif
Dan Albert98b8bcf2014-11-14 19:56:21 -0800302 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700303endif
304
Andreas Gamped1262282016-08-11 18:35:58 -0700305
Colin Crossecf75a62016-07-28 16:01:42 -0700306ART_HOST_CFLAGS := $(art_cflags)
307ART_TARGET_CFLAGS := $(art_cflags)
308
309ART_HOST_ASFLAGS := $(art_asflags)
310ART_TARGET_ASFLAGS := $(art_asflags)
311
312# Bug: 15446488. We don't omit the frame pointer to work around
313# clang/libunwind bugs that cause SEGVs in run-test-004-ThreadStress.
314ART_HOST_CFLAGS += -fno-omit-frame-pointer
315
Ying Wanga28ff0f2014-12-08 14:29:34 -0800316ifndef LIBART_IMG_HOST_BASE_ADDRESS
317 $(error LIBART_IMG_HOST_BASE_ADDRESS unset)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700318endif
Colin Crossecf75a62016-07-28 16:01:42 -0700319ART_HOST_CFLAGS += -DART_BASE_ADDRESS=$(LIBART_IMG_HOST_BASE_ADDRESS)
Alex Light50fa9932015-08-10 15:30:07 -0700320ART_HOST_CFLAGS += -DART_DEFAULT_INSTRUCTION_SET_FEATURES=default $(art_host_cflags)
Ying Wanga28ff0f2014-12-08 14:29:34 -0800321
Andreas Gamped1262282016-08-11 18:35:58 -0700322ART_HOST_CFLAGS += -DART_FRAME_SIZE_LIMIT=$(ART_HOST_FRAME_SIZE_LIMIT) \
323 $(ART_COMMON_STACK_OVERFLOW_DEFINES)
324
325
Ying Wanga28ff0f2014-12-08 14:29:34 -0800326ifndef LIBART_IMG_TARGET_BASE_ADDRESS
327 $(error LIBART_IMG_TARGET_BASE_ADDRESS unset)
328endif
Bilyan Borisov3071f802016-03-31 17:15:53 +0100329
Colin Crossecf75a62016-07-28 16:01:42 -0700330ART_TARGET_CFLAGS += -DART_TARGET \
Bilyan Borisov3071f802016-03-31 17:15:53 +0100331 -DART_BASE_ADDRESS=$(LIBART_IMG_TARGET_BASE_ADDRESS) \
332
Andreas Gamped1262282016-08-11 18:35:58 -0700333ART_TARGET_CFLAGS += -DART_FRAME_SIZE_LIMIT=$(ART_TARGET_FRAME_SIZE_LIMIT) \
334 $(ART_COMMON_STACK_OVERFLOW_DEFINES)
335
Bilyan Borisov3071f802016-03-31 17:15:53 +0100336ifeq ($(ART_TARGET_LINUX),true)
337# Setting ART_TARGET_LINUX to true compiles art/ assuming that the target device
338# will be running linux rather than android.
339ART_TARGET_CFLAGS += -DART_TARGET_LINUX
340else
Bilyan Borisovbb661c02016-04-04 16:27:32 +0100341# The ART_TARGET_ANDROID macro is passed to target builds, which check
342# against it instead of against __ANDROID__ (which is provided by target
343# toolchains).
Bilyan Borisov3071f802016-03-31 17:15:53 +0100344ART_TARGET_CFLAGS += -DART_TARGET_ANDROID
345endif
Bilyan Borisovbb661c02016-04-04 16:27:32 +0100346
Alex Light50fa9932015-08-10 15:30:07 -0700347ART_TARGET_CFLAGS += $(art_target_cflags)
Alex Lighta59dd802014-07-02 16:28:08 -0700348
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700349ART_HOST_NON_DEBUG_CFLAGS := $(art_host_non_debug_cflags)
350ART_TARGET_NON_DEBUG_CFLAGS := $(art_target_non_debug_cflags)
351ART_HOST_DEBUG_CFLAGS := $(art_debug_cflags)
352ART_TARGET_DEBUG_CFLAGS := $(art_debug_cflags)
353
Roland Levillainb5390f72016-07-04 16:59:53 +0100354ART_HOST_NON_DEBUG_ASFLAGS := $(art_non_debug_asflags)
355ART_TARGET_NON_DEBUG_ASFLAGS := $(art_non_debug_asflags)
356ART_HOST_DEBUG_ASFLAGS := $(art_debug_asflags)
357ART_TARGET_DEBUG_ASFLAGS := $(art_debug_asflags)
358
Alex Lighta59dd802014-07-02 16:28:08 -0700359ifndef LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA
360 LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA=-0x1000000
361endif
362ifndef LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA
363 LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA=0x1000000
364endif
365ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA)
366ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA)
367
368ifndef LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA
369 LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA=-0x1000000
370endif
371ifndef LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA
372 LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA=0x1000000
373endif
374ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA)
375ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA)
376
Ian Rogersafd9acc2014-06-17 08:21:54 -0700377# To use oprofile_android --callgraph, uncomment this and recompile with "mmm art -B -j16"
378# ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
379
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700380# Clear locals now they've served their purpose.
381art_cflags :=
Roland Levillain12bd7212015-06-04 17:50:27 +0100382art_asflags :=
Alex Light50fa9932015-08-10 15:30:07 -0700383art_host_cflags :=
384art_target_cflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700385art_debug_cflags :=
386art_non_debug_cflags :=
Roland Levillainb5390f72016-07-04 16:59:53 +0100387art_debug_asflags :=
388art_non_debug_asflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700389art_host_non_debug_cflags :=
390art_target_non_debug_cflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700391art_default_gc_type_cflags :=
392
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700393ART_TARGET_LDFLAGS :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700394
395# $(1): ndebug_or_debug
396define set-target-local-cflags-vars
397 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Roland Levillain12bd7212015-06-04 17:50:27 +0100398 LOCAL_ASFLAGS += $(ART_TARGET_ASFLAGS)
Dehao Chen997660d2014-07-08 10:00:56 -0700399 LOCAL_LDFLAGS += $(ART_TARGET_LDFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700400 art_target_cflags_ndebug_or_debug := $(1)
401 ifeq ($$(art_target_cflags_ndebug_or_debug),debug)
402 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Roland Levillainb5390f72016-07-04 16:59:53 +0100403 LOCAL_ASFLAGS += $(ART_TARGET_DEBUG_ASFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700404 else
405 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
Roland Levillainb5390f72016-07-04 16:59:53 +0100406 LOCAL_ASFLAGS += $(ART_TARGET_NON_DEBUG_ASFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700407 endif
408
Ian Rogersafd9acc2014-06-17 08:21:54 -0700409 # Clear locally used variables.
410 art_target_cflags_ndebug_or_debug :=
411endef
412
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700413# Support for disabling certain builds.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700414ART_BUILD_TARGET := false
415ART_BUILD_HOST := false
416ART_BUILD_NDEBUG := false
417ART_BUILD_DEBUG := false
418ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
419 ART_BUILD_TARGET := true
420 ART_BUILD_NDEBUG := true
421endif
422ifeq ($(ART_BUILD_TARGET_DEBUG),true)
423 ART_BUILD_TARGET := true
424 ART_BUILD_DEBUG := true
425endif
426ifeq ($(ART_BUILD_HOST_NDEBUG),true)
427 ART_BUILD_HOST := true
428 ART_BUILD_NDEBUG := true
429endif
430ifeq ($(ART_BUILD_HOST_DEBUG),true)
431 ART_BUILD_HOST := true
432 ART_BUILD_DEBUG := true
433endif
434
Igor Murashkin37743352014-11-13 14:38:00 -0800435endif # ART_ANDROID_COMMON_BUILD_MK