Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23103f4f authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by Android Git Automerger
Browse files

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

* commit 'f70f009c':
  Continue to use march=i686 before fix of g++ ICE.
parents 4e466096 f70f009c
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -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 \