From: Konstantinos Margaritis Date: Sun, 8 Oct 2023 21:44:12 +0000 (+0300) Subject: fix default arch/tune flags for ppc64le X-Git-Tag: vectorscan/5.4.11~2^2~5^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=981576a5fe161e162916dd097c5a75f2626e326b;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()