mirror of
https://github.com/sockspls/badfish
synced 2025-07-14 04:59:16 +00:00
Revert "Removed x86-64-ssse3-popcnt and x86-64-sse41-popcnt."
This reverts commit 92c2167481
.
This commit is contained in:
parent
1536e31065
commit
c001a4e62d
1 changed files with 19 additions and 0 deletions
19
src/Makefile
19
src/Makefile
|
@ -162,6 +162,15 @@ ifeq ($(ARCH),x86-64-ssse3)
|
|||
ssse3 = yes
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86-64-ssse3-popcnt)
|
||||
arch = x86_64
|
||||
prefetch = yes
|
||||
popcnt = yes
|
||||
sse = yes
|
||||
sse3 = yes
|
||||
ssse3 = yes
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86-64-sse41)
|
||||
arch = x86_64
|
||||
prefetch = yes
|
||||
|
@ -171,6 +180,16 @@ ifeq ($(ARCH),x86-64-sse41)
|
|||
sse41 = yes
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86-64-sse41-popcnt)
|
||||
arch = x86_64
|
||||
prefetch = yes
|
||||
popcnt = yes
|
||||
sse = yes
|
||||
sse3 = yes
|
||||
ssse3 = yes
|
||||
sse41 = yes
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86-64-sse42)
|
||||
arch = x86_64
|
||||
prefetch = yes
|
||||
|
|
Loading…
Add table
Reference in a new issue