Continue to use march=i686 before fix of g++ ICE.

BUG: 18174291
Change-Id: Idb76afd715b7b7049b9e47f92f2658f6923c8448
This commit is contained in:
Chih-Hung Hsieh 2014-10-29 13:57:33 -07:00
parent 5f60710fc9
commit be971fc19b
1 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,11 @@ ARCH_X86_HAVE_MOVBE := false
ARCH_X86_HAVE_POPCNT := false
# Some intrinsic functions used by libcxx only exist for prescott or newer CPUs.
# Some intrinsic functions used by libcxx only exist for prescott or newer CPUs,
# when compiled with clang/llvm.
# But g++ could have internal error with march=prescott. So we will use
# march=i686 until the g++ error is fixed or all Android modules can work around
# that problem, see b/18174291.
arch_variant_cflags := \
-march=prescott \
-march=i686 \