summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Dunn <robotdude@att.net>2016-05-13 22:25:29 -0400
committerSteve Kondik <shade@chemlab.org>2016-06-09 11:38:22 -0700
commit98055703ed43ca66e4756b1994d90bb6bbb2e5e4 (patch)
tree87107ae09984a5226b99385f89130dc3213bba0c
parent6aa5ad4a08e7ac8654cddc9a7af46b31a5eb2029 (diff)
downloadandroid_art-98055703ed43ca66e4756b1994d90bb6bbb2e5e4.tar.gz
android_art-98055703ed43ca66e4756b1994d90bb6bbb2e5e4.tar.bz2
android_art-98055703ed43ca66e4756b1994d90bb6bbb2e5e4.zip
art: Re-enable host clang
* Effectively a revert of e5c6b049f3c716be60bc82d79c44c451f49b4ad5 and 0299788b7a974841aa3324a573fbf04f49a4f23c, dependent on http://review.cyanogenmod.org/#/c/144705/. Change-Id: I8c73046525eda9d8de724e741460323d910bb37a
-rw-r--r--build/Android.common_build.mk8
1 files changed, 1 insertions, 7 deletions
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk
index d812678dc2..169a651049 100644
--- a/build/Android.common_build.mk
+++ b/build/Android.common_build.mk
@@ -72,13 +72,7 @@ ART_TARGET_CFLAGS :=
# Host.
ART_HOST_CLANG := false
-
-ifeq ($(HOST_OS),darwin)
- # Local darwin gcc is ancient
- WITHOUT_HOST_CLANG ?= false
-endif
-
-ifeq ($(WITHOUT_HOST_CLANG),false)
+ifneq ($(WITHOUT_HOST_CLANG),true)
# By default, host builds use clang for better warnings.
ART_HOST_CLANG := true
endif