[SDK] config.cmake: Fix generic mtune flag (#4017)
authorKonrad Dybcio <32096130+konradybcio@users.noreply.github.com>
Mon, 11 Oct 2021 00:46:12 +0000 (02:46 +0200)
committerGitHub <noreply@github.com>
Mon, 11 Oct 2021 00:46:12 +0000 (03:46 +0300)
sdk/cmake/config.cmake

index 75a6326..f0c2850 100644 (file)
@@ -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()