Skip to content

Commit b3c4d25

Browse files
dashaubpiiswrong
authored andcommitted
disable SSE for arm hardware e.g. Raspberry Pi (apache#3346)
1 parent 992a6e2 commit b3c4d25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make/config.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ USE_STATIC_MKL = NONE
8181
endif
8282

8383
#----------------------------
84-
# Settings for power arch
84+
# Settings for power and arm arch
8585
#----------------------------
8686
ARCH := $(shell uname -a)
87-
ifneq (,$(filter $(ARCH), powerpc64le ppc64le))
87+
ifneq (,$(filter $(ARCH), armv6l armv7l powerpc64le ppc64le))
8888
USE_SSE=0
8989
else
9090
USE_SSE=1

0 commit comments

Comments
 (0)