2011-12-13 16:21:56 +00:00
|
|
|
# This file contains feature macro definitions specific to the
|
2013-10-04 07:00:52 +00:00
|
|
|
# base 'x86' platform ABI.
|
2011-12-13 16:21:56 +00:00
|
|
|
#
|
|
|
|
# It is also used to build full_x86-eng / sdk_x86-eng platform images that
|
|
|
|
# are run in the emulator under KVM emulation (i.e. running directly on
|
|
|
|
# the host development machine's CPU).
|
|
|
|
|
|
|
|
# These features are optional and shall not be included in the base platform
|
2013-10-04 07:00:52 +00:00
|
|
|
# Otherwise, sdk_x86-eng system images might fail to run on some
|
2011-12-13 16:21:56 +00:00
|
|
|
# developer machines.
|
|
|
|
ARCH_X86_HAVE_SSSE3 := false
|
|
|
|
ARCH_X86_HAVE_MOVBE := false
|
|
|
|
ARCH_X86_HAVE_POPCNT := false
|
|
|
|
|
|
|
|
|
2014-10-30 01:55:45 +00:00
|
|
|
# Some intrinsic functions used by libcxx only exist for prescott or newer CPUs.
|
2011-09-28 14:47:50 +00:00
|
|
|
arch_variant_cflags := \
|
2014-10-30 01:55:45 +00:00
|
|
|
-march=prescott \
|
2011-09-28 14:47:50 +00:00
|
|
|
|