summaryrefslogtreecommitdiffstats
path: root/dex2oat/Android.mk
diff options
context:
space:
mode:
authorJunmo Park <junmoz.park@samsung.com>2014-08-04 17:19:29 +0900
committerJunmo Park <junmoz.park@samsung.com>2014-08-04 17:19:56 +0900
commit03f92f4e2ba358c701aa1c02a73372670d616e5a (patch)
treea152910b11c380ce675f0404d4fbeddb18db3553 /dex2oat/Android.mk
parent89c210bf418a152ccabfbbf853ddcce33aea450d (diff)
downloadart-03f92f4e2ba358c701aa1c02a73372670d616e5a.zip
art-03f92f4e2ba358c701aa1c02a73372670d616e5a.tar.gz
art-03f92f4e2ba358c701aa1c02a73372670d616e5a.tar.bz2
Fix art build script.
Use ART_BUILD_HOST_NDEBUG instead of ART_BUILD_NDEBUG. Change-Id: I1fcca4c52e79bad93dcdd750989f6223df2b0df4 Signed-off-by: Junmo Park <junmoz.park@samsung.com>
Diffstat (limited to 'dex2oat/Android.mk')
-rw-r--r--dex2oat/Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/dex2oat/Android.mk b/dex2oat/Android.mk
index 28db711..2ef826b 100644
--- a/dex2oat/Android.mk
+++ b/dex2oat/Android.mk
@@ -37,9 +37,9 @@ ifeq ($(ART_BUILD_TARGET_DEBUG),true)
endif
# We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
-ifeq ($(ART_BUILD_NDEBUG),true)
+ifeq ($(ART_BUILD_HOST_NDEBUG),true)
$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
endif
-ifeq ($(ART_BUILD_DEBUG),true)
+ifeq ($(ART_BUILD_HOST_DEBUG),true)
$(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
endif