From e5c6b049f3c716be60bc82d79c44c451f49b4ad5 Mon Sep 17 00:00:00 2001 From: Dave Daynard Date: Fri, 20 Nov 2015 18:47:32 -0500 Subject: 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 --- build/Android.common_build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.1