Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 593eb7b8 authored by Olof Johansson's avatar Olof Johansson Committed by Olof Johansson
Browse files

sandybridge setup: no AES_NI, AVX, MOVBE

Sandy Bridge actually doesn't have all of these options. For example AVX is only
available on the higher-end SKUs (not on Celeron G550).

Change-Id: Ib595a9a6b464626d0c88525c6aaa4d69176645cc
parent ca4b7555
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@ 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_AES_NI := false
ARCH_X86_HAVE_AVX    := false
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := false

# CFLAGS for this arch
arch_variant_cflags := \
	-march=corei7-avx \
	-march=corei7 \
	-mfpmath=sse \
+3 −3
Original line number Diff line number Diff line
@@ -5,11 +5,11 @@ 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_AES_NI := false
ARCH_X86_HAVE_AVX    := false
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := false

# CFLAGS for this arch
arch_variant_cflags := \
	-march=corei7-avx
	-march=corei7