Make x86_32 imply NO_AVX2, NO_AVX512 in addition to NO_AVX

fixes #2033
This commit is contained in:
Martin Kroeker 2019-02-28 09:58:25 +01:00 committed by GitHub
parent 69edc5bbe7
commit d66214c946
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)