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