Skip to content

Commit

Permalink
disable SSE for arm hardware e.g. Raspberry Pi (apache#3346)
Browse files Browse the repository at this point in the history
  • Loading branch information
dashaub authored and piiswrong committed Sep 22, 2016
1 parent 992a6e2 commit b3c4d25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ USE_STATIC_MKL = NONE
endif

#----------------------------
# Settings for power arch
# Settings for power and arm arch
#----------------------------
ARCH := $(shell uname -a)
ifneq (,$(filter $(ARCH), powerpc64le ppc64le))
ifneq (,$(filter $(ARCH), armv6l armv7l powerpc64le ppc64le))
USE_SSE=0
else
USE_SSE=1
Expand Down

0 comments on commit b3c4d25

Please sign in to comment.