diff options
author | Andreas Gampe <agampe@google.com> | 2015-01-13 18:12:36 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-01-13 18:12:36 -0800 |
commit | 89866b76de53945228eee9c89ee63a784fe5aba7 (patch) | |
tree | 67713533ca1475addc4c70a7dad14cb2fc45f622 /build/Android.common_build.mk | |
parent | 26c1d5fd4cdb0a2839ac3ad357890f77cc879193 (diff) | |
download | art-89866b76de53945228eee9c89ee63a784fe5aba7.zip art-89866b76de53945228eee9c89ee63a784fe5aba7.tar.gz art-89866b76de53945228eee9c89ee63a784fe5aba7.tar.bz2 |
ART: Only give Clang warning when Clang is active
Do not pollute output with Clang warning if we were supposed to
compile with Clang.
Change-Id: I1ee764dcfe0581e09a350cb01fdf0ba06dd18b56
Diffstat (limited to 'build/Android.common_build.mk')
-rw-r--r-- | build/Android.common_build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Android.common_build.mk b/build/Android.common_build.mk index 1e07430..086f298 100644 --- a/build/Android.common_build.mk +++ b/build/Android.common_build.mk @@ -84,7 +84,7 @@ else ART_TARGET_CLANG := false endif -ifeq ($(TARGET_ARCH),mips) +ifeq ($(TARGET_ARCH)|$(ART_TARGET_CLANG),mips|true) # b/18807290, Clang generated mips assembly code for array.cc # cannot be compiled by gas. # b/18789639, Clang assembler cannot compile inlined assembly code in |