Merge "Disable clang for mips/mips64 libc."

This commit is contained in:
Chih-hung Hsieh 2015-11-20 18:27:14 +00:00 committed by Gerrit Code Review
commit 8d5fb0d787

View File

@ -625,6 +625,11 @@ ifeq ($(TARGET_ARCH),x86_64)
use_clang := false
endif
# b/25291096, Clang/llvm compiled libc.so for mips/mips64 failed to boot.
ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
use_clang := false
endif
ifeq ($(use_clang),)
use_clang := false
endif