[SDK] config.cmake: Fix generic mtune flag (#4017)

This commit is contained in:
Konrad Dybcio 2021-10-11 02:46:12 +02:00 committed by GitHub
parent 38b9688d45
commit 3c36cde874
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ if(ARCH STREQUAL "i386" OR ARCH STREQUAL "amd64")
set(TUNE "generic" CACHE STRING set(TUNE "generic" CACHE STRING
"Which CPU ReactOS should be optimized for.") "Which CPU ReactOS should be optimized for.")
elseif(ARCH STREQUAL "arm") elseif(ARCH STREQUAL "arm")
set(TUNE "generic-arch" CACHE STRING set(TUNE "generic-armv7-a" CACHE STRING
"Which CPU ReactOS should be optimized for.") "Which CPU ReactOS should be optimized for.")
endif() endif()