Merge pull request #2034 from martin-frbg/issue2033

Make x86_32 imply NO_AVX2, NO_AVX512 in addition to NO_AVX
This commit is contained in:
Martin Kroeker 2019-02-28 22:10:12 +01:00 committed by GitHub
commit 4c321ae571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ GETARCH_FLAGS += -DNO_AVX
endif endif
ifeq ($(BINARY), 32) ifeq ($(BINARY), 32)
GETARCH_FLAGS += -DNO_AVX GETARCH_FLAGS += -DNO_AVX -DNO_AVX2 -DNO_AVX512
endif endif
ifeq ($(NO_AVX2), 1) ifeq ($(NO_AVX2), 1)