diff options
author | Dan Albert <danalbert@google.com> | 2014-12-02 14:58:06 -0800 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-12-02 14:58:06 -0800 |
commit | 6c7cdc5eb809a72e5d0457d0220f9ad8458fe831 (patch) | |
tree | 63e9011b064db4f89504f568c25aecc202d70b6c /build | |
parent | b67f965a2c0af98867dcc75ce07ec94d943421ae (diff) | |
download | art-6c7cdc5eb809a72e5d0457d0220f9ad8458fe831.zip art-6c7cdc5eb809a72e5d0457d0220f9ad8458fe831.tar.gz art-6c7cdc5eb809a72e5d0457d0220f9ad8458fe831.tar.bz2 |
Don't force color diagnostics.
Clang does this automatically for you now, and forcing it causes ugly
(and difficult to parse) error diagnostics for non-color terminals.
Change-Id: I5ceb673ad50ad99cb78c733d18ac7dbfe8f978d3
Diffstat (limited to 'build')
-rw-r--r-- | build/Android.common_build.mk | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk index b3d1380..5dd9f15 100644 --- a/build/Android.common_build.mk +++ b/build/Android.common_build.mk @@ -144,11 +144,8 @@ ART_TARGET_CLANG_CFLAGS_arm64 += \ ART_TARGET_CLANG_CFLAGS_arm64 += \ -fno-vectorize -# Colorize clang compiler warnings. -art_clang_cflags := -fcolor-diagnostics - # Warn about thread safety violations with clang. -art_clang_cflags += -Wthread-safety +art_clang_cflags := -Wthread-safety # Warn if switch fallthroughs aren't annotated. art_clang_cflags += -Wimplicit-fallthrough |