1# This file contains feature macro definitions specific to the 2# silvermont arch variant. 3# 4# See build/core/combo/arch/x86/x86-atom.mk for differences. 5# 6 7ARCH_X86_HAVE_SSSE3 := true 8ARCH_X86_HAVE_SSE4 := true 9ARCH_X86_HAVE_SSE4_1 := true 10ARCH_X86_HAVE_SSE4_2 := true 11ARCH_X86_HAVE_AES_NI := true 12ARCH_X86_HAVE_POPCNT := true 13ARCH_X86_HAVE_MOVBE := true 14 15# CFLAGS for this arch 16arch_variant_cflags := \ 17 -march=slm \ 18 -mfpmath=sse \ 19 20