Home | History | Annotate | Download | only in x86
      1 # Configuration for Linux on x86.
      2 # Generating binaries for Haswell processors.
      3 #
      4 ARCH_X86_HAVE_SSSE3  := true
      5 ARCH_X86_HAVE_SSE4   := true
      6 ARCH_X86_HAVE_SSE4_1 := true
      7 ARCH_X86_HAVE_SSE4_2 := true
      8 ARCH_X86_HAVE_AES_NI := true
      9 ARCH_X86_HAVE_AVX    := true
     10 
     11 # CFLAGS for this arch
     12 arch_variant_cflags := \
     13 	-march=core-avx2 \
     14 	-mstackrealign \
     15 	-mfpmath=sse \
     16 
     17