Skip to content

Commit e691c0d

Browse files
committed
Fix POWER platform detection
1 parent 9dbdf23 commit e691c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ AC_PROG_CXX
1313
CXXFLAGS="-O3 -std=c++17 -Wall -Wpedantic -Wno-unused-command-line-argument "$CXXFLAGS
1414
if test $(uname -m) == "x86_64"; then
1515
CXXFLAGS="-march=native "$CXXFLAGS
16-
elif test $(uname -m) == "ppc64le"; then
16+
elif test $(uname -m) == "ppc64le" || test $(uname -m) == "ppc64"; then
1717
CXXFLAGS="-mcpu=native "$CXXFLAGS
1818
fi
1919

0 commit comments

Comments
 (0)