summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Daynard <nardholio@gmail.com>2015-11-20 18:47:32 -0500
committerSteve Kondik <shade@chemlab.org>2016-01-07 16:46:23 -0800
commite5c6b049f3c716be60bc82d79c44c451f49b4ad5 (patch)
tree0b335cd8f126575a18f64544b9a303f4926c707d
parent875ffee6f23971466f3655a9e1e73ba6a1dc0393 (diff)
downloadart-e5c6b049f3c716be60bc82d79c44c451f49b4ad5.zip
art-e5c6b049f3c716be60bc82d79c44c451f49b4ad5.tar.gz
art-e5c6b049f3c716be60bc82d79c44c451f49b4ad5.tar.bz2
Art: disable host clang by default
Otherwise my builds crash and burn because I don't know how to set up host clang properly and honestly, do we really need "better warnings" for ART? I mean, this is one part of the OS that for the most part we are not going to fuck with Change-Id: Ie45a6926510ec12aedc3cfac79d00ee842a7778b
-rw-r--r--build/Android.common_build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk
index 169a651..c7333b8 100644
--- a/build/Android.common_build.mk
+++ b/build/Android.common_build.mk
@@ -72,7 +72,7 @@ ART_TARGET_CFLAGS :=
# Host.
ART_HOST_CLANG := false
-ifneq ($(WITHOUT_HOST_CLANG),true)
+ifeq ($(WITHOUT_HOST_CLANG),false)
# By default, host builds use clang for better warnings.
ART_HOST_CLANG := true
endif