Commit 1307831b authored by Dan Willemsen's avatar Dan Willemsen Committed by Gerrit Code Review
Browse files

Merge "Fix Soong mips builds"

parents 2576ce94 e4f486ca
......@@ -113,12 +113,19 @@ cc_defaults {
cflags: ["-DUSE_DLMALLOC"],
},
},
// Clang/llvm has incompatible long double (fp128) for x86_64.
// https://llvm.org/bugs/show_bug.cgi?id=23897
arch: {
// Clang/llvm has incompatible long double (fp128) for x86_64.
// https://llvm.org/bugs/show_bug.cgi?id=23897
x86_64: {
clang: false,
},
// b/25291096, Clang/llvm compiled libc.so for mips/mips64 failed to boot.
mips: {
clang: false,
},
mips64: {
clang: false,
},
},
stl: "none",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment