x86_64.mk revision fd82a49e04adb5513977acd0f616ddac421c715b
1# This file contains feature macro definitions specific to the
2# base 'x86_64' platform ABI. This one must *strictly* match the NDK x86_64 ABI
3# which mandates specific CPU extensions to be available.
4#
5# It is also used to build full_x86_64-eng / sdk_x86_64-eng  platform images
6# that are run in the emulator under KVM emulation (i.e. running directly on
7# the host development machine's CPU).
8#
9
10# These features are optional and shall not be included in the base platform
11# Otherwise, they sdk_x86_64-eng system images might fail to run on some
12# developer machines.
13#
14
15ARCH_X86_HAVE_SSSE3 := true
16ARCH_X86_HAVE_MOVBE := false
17ARCH_X86_HAVE_POPCNT := true
18
19# CFLAGS for this arch
20arch_variant_cflags := \
21    -march=x86-64
22
23