For ndk docs change, please refer to: https://android-review.googlesource.com/#/c/110100/ Change-Id: I8428e7a979eb02441066aeeee43ce693d4d0dc8d Signed-off-by: Alexander Ivchenko <alexander.ivchenko@intel.com>
18 lines
405 B
Makefile
18 lines
405 B
Makefile
# Configuration for Linux on x86.
|
|
# Generating binaries for Ivy Bridge processors.
|
|
#
|
|
ARCH_X86_HAVE_SSSE3 := true
|
|
ARCH_X86_HAVE_SSE4 := true
|
|
ARCH_X86_HAVE_SSE4_1 := true
|
|
ARCH_X86_HAVE_SSE4_2 := true
|
|
ARCH_X86_HAVE_AES_NI := true
|
|
ARCH_X86_HAVE_AVX := true
|
|
ARCH_X86_HAVE_POPCNT := true
|
|
ARCH_X86_HAVE_MOVBE := false
|
|
|
|
# CFLAGS for this arch
|
|
arch_variant_cflags := \
|
|
-march=core-avx-i \
|
|
-mfpmath=sse \
|
|
|