blob: 04a034463bf78dbc3221409a2cc842de3edce194 [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 \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700139 -ggdb3 \
140 -Wall \
141 -Werror \
142 -Wextra \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700143 -Wstrict-aliasing \
144 -fstrict-aliasing \
145 -Wunreachable-code \
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800146 -Wredundant-decls \
147 -Wshadow \
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800148 -Wunused \
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700149 -fvisibility=protected \
150 $(art_default_gc_type_cflags)
151
Alex Light50fa9932015-08-10 15:30:07 -0700152# The architectures the compiled tools are able to run on. Setting this to 'all' will cause all
153# architectures to be included.
Colin Crossff46c7d2016-08-18 13:49:53 -0700154ART_TARGET_CODEGEN_ARCHS ?= svelte
Alex Light50fa9932015-08-10 15:30:07 -0700155ART_HOST_CODEGEN_ARCHS ?= all
156
157ifeq ($(ART_TARGET_CODEGEN_ARCHS),all)
158 ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_SUPPORTED_ARCH) $(ART_HOST_SUPPORTED_ARCH))
Alex Light50fa9932015-08-10 15:30:07 -0700159else
Alex Light50fa9932015-08-10 15:30:07 -0700160 ifeq ($(ART_TARGET_CODEGEN_ARCHS),svelte)
161 ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_ARCH_64) $(ART_TARGET_ARCH_32))
162 endif
163endif
164ifeq ($(ART_HOST_CODEGEN_ARCHS),all)
165 ART_HOST_CODEGEN_ARCHS := $(sort $(ART_TARGET_SUPPORTED_ARCH) $(ART_HOST_SUPPORTED_ARCH))
Alex Light50fa9932015-08-10 15:30:07 -0700166else
Alex Light50fa9932015-08-10 15:30:07 -0700167 ifeq ($(ART_HOST_CODEGEN_ARCHS),svelte)
168 ART_HOST_CODEGEN_ARCHS := $(sort $(ART_TARGET_CODEGEN_ARCHS) $(ART_HOST_ARCH_64) $(ART_HOST_ARCH_32))
169 endif
170endif
171
172ifneq (,$(filter arm64,$(ART_TARGET_CODEGEN_ARCHS)))
173 ART_TARGET_CODEGEN_ARCHS += arm
174endif
175ifneq (,$(filter mips64,$(ART_TARGET_CODEGEN_ARCHS)))
176 ART_TARGET_CODEGEN_ARCHS += mips
177endif
178ifneq (,$(filter x86_64,$(ART_TARGET_CODEGEN_ARCHS)))
179 ART_TARGET_CODEGEN_ARCHS += x86
180endif
181ART_TARGET_CODEGEN_ARCHS := $(sort $(ART_TARGET_CODEGEN_ARCHS))
182ifneq (,$(filter arm64,$(ART_HOST_CODEGEN_ARCHS)))
183 ART_HOST_CODEGEN_ARCHS += arm
184endif
185ifneq (,$(filter mips64,$(ART_HOST_CODEGEN_ARCHS)))
186 ART_HOST_CODEGEN_ARCHS += mips
187endif
188ifneq (,$(filter x86_64,$(ART_HOST_CODEGEN_ARCHS)))
189 ART_HOST_CODEGEN_ARCHS += x86
190endif
191ART_HOST_CODEGEN_ARCHS := $(sort $(ART_HOST_CODEGEN_ARCHS))
192
193# Base set of cflags used by target build only
194art_target_cflags := \
195 $(foreach target_arch,$(strip $(ART_TARGET_CODEGEN_ARCHS)), -DART_ENABLE_CODEGEN_$(target_arch))
196# Base set of cflags used by host build only
197art_host_cflags := \
198 $(foreach host_arch,$(strip $(ART_HOST_CODEGEN_ARCHS)), -DART_ENABLE_CODEGEN_$(host_arch))
199
Roland Levillain12bd7212015-06-04 17:50:27 +0100200# Base set of asflags used by all things ART.
201art_asflags :=
202
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800203# Missing declarations: too many at the moment, as we use "extern" quite a bit.
204# -Wmissing-declarations \
205
206
Mathieu Chartiercd195fe2014-11-25 18:36:01 -0800207
208ifdef ART_IMT_SIZE
209 art_cflags += -DIMT_SIZE=$(ART_IMT_SIZE)
210else
Matthew Gharrity013e3f32016-06-16 11:49:23 -0700211 # Default is 43
212 art_cflags += -DIMT_SIZE=43
Mathieu Chartiercd195fe2014-11-25 18:36:01 -0800213endif
214
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800215ifeq ($(ART_HEAP_POISONING),true)
216 art_cflags += -DART_HEAP_POISONING=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100217 art_asflags += -DART_HEAP_POISONING=1
Hiroshi Yamauchib0d22f12014-12-08 12:08:46 -0800218endif
219
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700220#
221# Used to change the read barrier type. Valid values are BAKER, BROOKS, TABLELOOKUP.
222# The default is BAKER.
223#
224ART_READ_BARRIER_TYPE ?= BAKER
225
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800226ifeq ($(ART_USE_READ_BARRIER),true)
227 art_cflags += -DART_USE_READ_BARRIER=1
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700228 art_cflags += -DART_READ_BARRIER_TYPE_IS_$(ART_READ_BARRIER_TYPE)=1
Roland Levillain12bd7212015-06-04 17:50:27 +0100229 art_asflags += -DART_USE_READ_BARRIER=1
Hiroshi Yamauchi2e287752015-10-02 13:41:34 -0700230 art_asflags += -DART_READ_BARRIER_TYPE_IS_$(ART_READ_BARRIER_TYPE)=1
Hiroshi Yamauchi37ba27a2016-01-26 14:06:14 -0800231
232 # Temporarily override -fstack-protector-strong with -fstack-protector to avoid a major
233 # slowdown with the read barrier config. b/26744236.
234 art_cflags += -fstack-protector
Hiroshi Yamauchic23f0d82015-01-23 17:23:42 -0800235endif
236
Hiroshi Yamauchi79bd2bf2015-03-20 10:28:34 -0700237ifeq ($(ART_USE_TLAB),true)
238 art_cflags += -DART_USE_TLAB=1
239endif
240
Roland Levillain04147ef2016-09-06 11:09:41 +0100241# Are additional statically-linked ART host binaries (dex2oats,
242# oatdumps, etc.) getting built?
243ifeq ($(ART_BUILD_HOST_STATIC),true)
244 art_cflags += -DART_BUILD_HOST_STATIC=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
Andreas Gampeb41928d2016-08-11 21:11:59 -0700286# Keep these as small as possible. We have separate values as we have some host vs target
287# specific code (and previously GCC vs Clang).
288ART_HOST_FRAME_SIZE_LIMIT := 1736
Andreas Gamped1262282016-08-11 18:35:58 -0700289ART_TARGET_FRAME_SIZE_LIMIT := 1736
290
291# Frame size adaptations for instrumented builds.
292ifdef SANITIZE_TARGET
293 ART_TARGET_FRAME_SIZE_LIMIT := 6400
294endif
295
296# Add frame-size checks for non-debug builds.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700297ifeq ($(HOST_OS),linux)
Dan Albert31fb2602014-09-30 22:10:10 -0700298 ifneq ($(ART_COVERAGE),true)
299 ifneq ($(NATIVE_COVERAGE),true)
Andreas Gamped1262282016-08-11 18:35:58 -0700300 art_host_non_debug_cflags += -Wframe-larger-than=$(ART_HOST_FRAME_SIZE_LIMIT)
301 art_target_non_debug_cflags += -Wframe-larger-than=$(ART_TARGET_FRAME_SIZE_LIMIT)
Dan Albert31fb2602014-09-30 22:10:10 -0700302 endif
Dan Albert98b8bcf2014-11-14 19:56:21 -0800303 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700304endif
305
Andreas Gamped1262282016-08-11 18:35:58 -0700306
Colin Crossecf75a62016-07-28 16:01:42 -0700307ART_HOST_CFLAGS := $(art_cflags)
308ART_TARGET_CFLAGS := $(art_cflags)
309
310ART_HOST_ASFLAGS := $(art_asflags)
311ART_TARGET_ASFLAGS := $(art_asflags)
312
313# Bug: 15446488. We don't omit the frame pointer to work around
314# clang/libunwind bugs that cause SEGVs in run-test-004-ThreadStress.
315ART_HOST_CFLAGS += -fno-omit-frame-pointer
316
Ying Wanga28ff0f2014-12-08 14:29:34 -0800317ifndef LIBART_IMG_HOST_BASE_ADDRESS
318 $(error LIBART_IMG_HOST_BASE_ADDRESS unset)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700319endif
Colin Crossecf75a62016-07-28 16:01:42 -0700320ART_HOST_CFLAGS += -DART_BASE_ADDRESS=$(LIBART_IMG_HOST_BASE_ADDRESS)
Colin Cross802d5982016-08-17 16:52:08 -0700321ART_HOST_CFLAGS += $(art_host_cflags)
Ying Wanga28ff0f2014-12-08 14:29:34 -0800322
Andreas Gamped1262282016-08-11 18:35:58 -0700323ART_HOST_CFLAGS += -DART_FRAME_SIZE_LIMIT=$(ART_HOST_FRAME_SIZE_LIMIT) \
324 $(ART_COMMON_STACK_OVERFLOW_DEFINES)
325
326
Ying Wanga28ff0f2014-12-08 14:29:34 -0800327ifndef LIBART_IMG_TARGET_BASE_ADDRESS
328 $(error LIBART_IMG_TARGET_BASE_ADDRESS unset)
329endif
Bilyan Borisov3071f802016-03-31 17:15:53 +0100330
Colin Crossecf75a62016-07-28 16:01:42 -0700331ART_TARGET_CFLAGS += -DART_TARGET \
Bilyan Borisov3071f802016-03-31 17:15:53 +0100332 -DART_BASE_ADDRESS=$(LIBART_IMG_TARGET_BASE_ADDRESS) \
333
Andreas Gamped1262282016-08-11 18:35:58 -0700334ART_TARGET_CFLAGS += -DART_FRAME_SIZE_LIMIT=$(ART_TARGET_FRAME_SIZE_LIMIT) \
335 $(ART_COMMON_STACK_OVERFLOW_DEFINES)
336
Bilyan Borisov3071f802016-03-31 17:15:53 +0100337ifeq ($(ART_TARGET_LINUX),true)
338# Setting ART_TARGET_LINUX to true compiles art/ assuming that the target device
339# will be running linux rather than android.
340ART_TARGET_CFLAGS += -DART_TARGET_LINUX
341else
Bilyan Borisovbb661c02016-04-04 16:27:32 +0100342# The ART_TARGET_ANDROID macro is passed to target builds, which check
343# against it instead of against __ANDROID__ (which is provided by target
344# toolchains).
Bilyan Borisov3071f802016-03-31 17:15:53 +0100345ART_TARGET_CFLAGS += -DART_TARGET_ANDROID
346endif
Bilyan Borisovbb661c02016-04-04 16:27:32 +0100347
Alex Light50fa9932015-08-10 15:30:07 -0700348ART_TARGET_CFLAGS += $(art_target_cflags)
Alex Lighta59dd802014-07-02 16:28:08 -0700349
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700350ART_HOST_NON_DEBUG_CFLAGS := $(art_host_non_debug_cflags)
351ART_TARGET_NON_DEBUG_CFLAGS := $(art_target_non_debug_cflags)
352ART_HOST_DEBUG_CFLAGS := $(art_debug_cflags)
353ART_TARGET_DEBUG_CFLAGS := $(art_debug_cflags)
354
Roland Levillainb5390f72016-07-04 16:59:53 +0100355ART_HOST_NON_DEBUG_ASFLAGS := $(art_non_debug_asflags)
356ART_TARGET_NON_DEBUG_ASFLAGS := $(art_non_debug_asflags)
357ART_HOST_DEBUG_ASFLAGS := $(art_debug_asflags)
358ART_TARGET_DEBUG_ASFLAGS := $(art_debug_asflags)
359
Alex Lighta59dd802014-07-02 16:28:08 -0700360ifndef LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA
361 LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA=-0x1000000
362endif
363ifndef LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA
364 LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA=0x1000000
365endif
366ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_HOST_MIN_BASE_ADDRESS_DELTA)
367ART_HOST_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_HOST_MAX_BASE_ADDRESS_DELTA)
368
369ifndef LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA
370 LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA=-0x1000000
371endif
372ifndef LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA
373 LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA=0x1000000
374endif
375ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MIN_DELTA=$(LIBART_IMG_TARGET_MIN_BASE_ADDRESS_DELTA)
376ART_TARGET_CFLAGS += -DART_BASE_ADDRESS_MAX_DELTA=$(LIBART_IMG_TARGET_MAX_BASE_ADDRESS_DELTA)
377
Ian Rogersafd9acc2014-06-17 08:21:54 -0700378# To use oprofile_android --callgraph, uncomment this and recompile with "mmm art -B -j16"
379# ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
380
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700381# Clear locals now they've served their purpose.
382art_cflags :=
Roland Levillain12bd7212015-06-04 17:50:27 +0100383art_asflags :=
Alex Light50fa9932015-08-10 15:30:07 -0700384art_host_cflags :=
385art_target_cflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700386art_debug_cflags :=
387art_non_debug_cflags :=
Roland Levillainb5390f72016-07-04 16:59:53 +0100388art_debug_asflags :=
389art_non_debug_asflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700390art_host_non_debug_cflags :=
391art_target_non_debug_cflags :=
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700392art_default_gc_type_cflags :=
393
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700394ART_TARGET_LDFLAGS :=
Ian Rogersafd9acc2014-06-17 08:21:54 -0700395
396# $(1): ndebug_or_debug
397define set-target-local-cflags-vars
398 LOCAL_CFLAGS += $(ART_TARGET_CFLAGS)
Roland Levillain12bd7212015-06-04 17:50:27 +0100399 LOCAL_ASFLAGS += $(ART_TARGET_ASFLAGS)
Dehao Chen997660d2014-07-08 10:00:56 -0700400 LOCAL_LDFLAGS += $(ART_TARGET_LDFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700401 art_target_cflags_ndebug_or_debug := $(1)
402 ifeq ($$(art_target_cflags_ndebug_or_debug),debug)
403 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Roland Levillainb5390f72016-07-04 16:59:53 +0100404 LOCAL_ASFLAGS += $(ART_TARGET_DEBUG_ASFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700405 else
406 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
Roland Levillainb5390f72016-07-04 16:59:53 +0100407 LOCAL_ASFLAGS += $(ART_TARGET_NON_DEBUG_ASFLAGS)
Ian Rogersafd9acc2014-06-17 08:21:54 -0700408 endif
409
Ian Rogersafd9acc2014-06-17 08:21:54 -0700410 # Clear locally used variables.
411 art_target_cflags_ndebug_or_debug :=
412endef
413
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700414# Support for disabling certain builds.
Ian Rogersafd9acc2014-06-17 08:21:54 -0700415ART_BUILD_TARGET := false
416ART_BUILD_HOST := false
417ART_BUILD_NDEBUG := false
418ART_BUILD_DEBUG := false
419ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
420 ART_BUILD_TARGET := true
421 ART_BUILD_NDEBUG := true
422endif
423ifeq ($(ART_BUILD_TARGET_DEBUG),true)
424 ART_BUILD_TARGET := true
425 ART_BUILD_DEBUG := true
426endif
427ifeq ($(ART_BUILD_HOST_NDEBUG),true)
428 ART_BUILD_HOST := true
429 ART_BUILD_NDEBUG := true
430endif
431ifeq ($(ART_BUILD_HOST_DEBUG),true)
432 ART_BUILD_HOST := true
433 ART_BUILD_DEBUG := true
434endif
435
Igor Murashkin37743352014-11-13 14:38:00 -0800436endif # ART_ANDROID_COMMON_BUILD_MK