]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
Prevent using x86 SIMD compiler flags on aarch64 (ARM) architecture
authorpwpiwi <pwpiwi@users.noreply.github.com>
Wed, 16 Aug 2017 06:50:31 +0000 (08:50 +0200)
committerpwpiwi <pwpiwi@users.noreply.github.com>
Wed, 16 Aug 2017 06:50:31 +0000 (08:50 +0200)
client/Makefile

index 471d2f548583dce6504763690723be85b1bb5dcc..fb6520a94f98f089af7f6f301a2eb17680393701 100644 (file)
@@ -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), )
Impressum, Datenschutz