mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-23 23:24:38 +08:00
Prevent using x86 SIMD compiler flags on aarch64 (ARM) architecture
This commit is contained in:
parent
f2081c4356
commit
6b758d652d
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ cpu_arch = $(shell uname -m)
|
|||
ifneq ($(findstring 86, $(cpu_arch)), )
|
||||
MULTIARCHSRCS = hardnested/hardnested_bf_core.c hardnested/hardnested_bitarray_core.c
|
||||
endif
|
||||
ifneq ($(findstring 64, $(cpu_arch)), )
|
||||
ifneq ($(findstring amd64, $(cpu_arch)), )
|
||||
MULTIARCHSRCS = hardnested/hardnested_bf_core.c hardnested/hardnested_bitarray_core.c
|
||||
endif
|
||||
ifeq ($(MULTIARCHSRCS), )
|
||||
|
|
Loading…
Reference in a new issue