Fix X86_SSE3 -> X86_SSSE3
Change-Id: Ic89e13560e88920b133fab349e7c035b8fbea99f
This commit is contained in:
parent
fa4d33f452
commit
96dc9f3f4a
|
@ -126,7 +126,7 @@ var cpuVariantConditionals = map[string]struct {
|
|||
"mips_rev6": {"ifdef ARCH_MIPS_REV6", "mips", false},
|
||||
"atom": {"ifeq ($(TARGET_ARCH_VARIANT),atom)", "$(TARGET_ARCH)", true},
|
||||
"silvermont": {"ifeq ($(TARGET_ARCH_VARIANT),silvermont)", "$(TARGET_ARCH)", true},
|
||||
"x86_sse3": {"ifeq ($(ARCH_X86_HAVE_SSE3),true)", "x86", false},
|
||||
"x86_ssse3": {"ifeq ($(ARCH_X86_HAVE_SSSE3),true)", "x86", false},
|
||||
"x86_sse4": {"ifeq ($(ARCH_X86_HAVE_SSE4),true)", "x86", false},
|
||||
}
|
||||
|
||||
|
|
|
@ -146,7 +146,7 @@ type archProperties struct {
|
|||
Mips_rev6 interface{} `blueprint:"filter(android:\"arch_variant\")"`
|
||||
|
||||
// X86 arch variants
|
||||
X86_sse3 interface{} `blueprint:"filter(android:\"arch_variant\")"`
|
||||
X86_ssse3 interface{} `blueprint:"filter(android:\"arch_variant\")"`
|
||||
X86_sse4 interface{} `blueprint:"filter(android:\"arch_variant\")"`
|
||||
|
||||
// X86 cpu variants
|
||||
|
|
Loading…
Reference in New Issue