https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3c36cde87491883bb49372c61213e9e07e989e35
commit 3c36cde87491883bb49372c61213e9e07e989e35 Author: Konrad Dybcio <[email protected]> AuthorDate: Mon Oct 11 02:46:12 2021 +0200 Commit: GitHub <[email protected]> CommitDate: Mon Oct 11 03:46:12 2021 +0300 [SDK] config.cmake: Fix generic mtune flag (#4017) --- sdk/cmake/config.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cmake/config.cmake b/sdk/cmake/config.cmake index 75a63261eb6..f0c2850c86c 100644 --- a/sdk/cmake/config.cmake +++ b/sdk/cmake/config.cmake @@ -30,7 +30,7 @@ if(ARCH STREQUAL "i386" OR ARCH STREQUAL "amd64") set(TUNE "generic" CACHE STRING "Which CPU ReactOS should be optimized for.") elseif(ARCH STREQUAL "arm") - set(TUNE "generic-arch" CACHE STRING + set(TUNE "generic-armv7-a" CACHE STRING "Which CPU ReactOS should be optimized for.") endif()
