From: Konstantinos Margaritis Date: Sun, 8 Oct 2023 21:44:12 +0000 (+0300) Subject: fix default arch/tune flags for ppc64le X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b61a40f7d9c51e8359c4185b89b6765b11d635e5;p=thirdparty%2Fvectorscan.git fix default arch/tune flags for ppc64le --- diff --git a/cmake/archdetect.cmake b/cmake/archdetect.cmake index 58258fe5..9529d682 100644 --- a/cmake/archdetect.cmake +++ b/cmake/archdetect.cmake @@ -69,7 +69,7 @@ else() set(GNUCC_ARCH armv7a) set(TUNE_FLAG generic) else() - set(GNUCC_ARCH generic) - set(TUNE_FLAG generic) + set(GNUCC_ARCH power9) + set(TUNE_FLAG power9) endif() endif()