diff -r 000000000000 -r 6474c204b198 build/unix/build-clang/no-sse-on-linux.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build/unix/build-clang/no-sse-on-linux.patch Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,13 @@ +Index: lib/Driver/Tools.cpp +=================================================================== +--- a/clang/lib/Driver/Tools.cpp (revision 181515) ++++ b/clang/lib/Driver/Tools.cpp (working copy) +@@ -1245,7 +1245,7 @@ + // All x86 devices running Android have core2 as their common + // denominator. This makes a better choice than pentium4. + if (Triple.getEnvironment() == llvm::Triple::Android) +- return "core2"; ++ return "686"; + + // Fallback to p4. + return "pentium4";