Fix Soong mips builds

Change-Id: I6ae8208e077d831969b08e7abd232deaa20ceca1
This commit is contained in:
Dan Willemsen 2016-01-13 23:22:22 -08:00
parent c3aa3d892b
commit e4f486ca25
1 changed files with 9 additions and 2 deletions

View File

@ -113,12 +113,19 @@ cc_defaults {
cflags: ["-DUSE_DLMALLOC"], cflags: ["-DUSE_DLMALLOC"],
}, },
}, },
arch: {
// Clang/llvm has incompatible long double (fp128) for x86_64. // Clang/llvm has incompatible long double (fp128) for x86_64.
// https://llvm.org/bugs/show_bug.cgi?id=23897 // https://llvm.org/bugs/show_bug.cgi?id=23897
arch: {
x86_64: { x86_64: {
clang: false, clang: false,
}, },
// b/25291096, Clang/llvm compiled libc.so for mips/mips64 failed to boot.
mips: {
clang: false,
},
mips64: {
clang: false,
},
}, },
stl: "none", stl: "none",