diff options
| author | 2019-03-15 21:41:32 +0000 | |
|---|---|---|
| committer | 2019-03-15 21:41:32 +0000 | |
| commit | 8c2881034ac9d72b393cbf6a3b6c718991072319 (patch) | |
| tree | cc0915f90c27b65968eabd12ce4f701ed8b31d69 | |
| parent | bc2f9ce2c12267da9ef1ce29c82e3a5505d81873 (diff) | |
| parent | b8bf92e6b827c1e21f96827f7c1e5ac338484c93 (diff) | |
Merge "Add stoney ridge x86 variant"
| -rw-r--r-- | core/combo/arch/x86/stoneyridge.mk | 12 | ||||
| -rw-r--r-- | core/combo/arch/x86_64/stoneyridge.mk | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/core/combo/arch/x86/stoneyridge.mk b/core/combo/arch/x86/stoneyridge.mk new file mode 100644 index 0000000000..30405a173d --- /dev/null +++ b/core/combo/arch/x86/stoneyridge.mk @@ -0,0 +1,12 @@ +# Configuration for Linux on x86. +# Generating binaries for Stoney Ridge processors. +# +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_AVX2 := true +ARCH_X86_HAVE_POPCNT := true +ARCH_X86_HAVE_MOVBE := true diff --git a/core/combo/arch/x86_64/stoneyridge.mk b/core/combo/arch/x86_64/stoneyridge.mk new file mode 100644 index 0000000000..f7d95835ec --- /dev/null +++ b/core/combo/arch/x86_64/stoneyridge.mk @@ -0,0 +1,12 @@ +# Configuration for Linux on x86_64. +# Generating binaries for Stoney Ridge processors. +# +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_AVX2 := true +ARCH_X86_HAVE_POPCNT := true +ARCH_X86_HAVE_MOVBE := true |