Skip to content

Commit fa94b52

Browse files
committed
tmp3
1 parent da52cfd commit fa94b52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,8 @@ set(JEMALLOC_SRC_FILES
529529
set(OS_NAME "unknown")
530530
set(OS_ARCH "amd64")
531531

532-
string(REGEX MATCH "(arm64|aarch64)" IS_ARM "${CMAKE_SYSTEM_PROCESSOR}")
532+
string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" SYSTEM_PROCESSOR_LOWER)
533+
string(REGEX MATCH "(arm64|aarch64)" IS_ARM "${SYSTEM_PROCESSOR_LOWER}")
533534
if(IS_ARM)
534535
set(OS_ARCH "arm64")
535536
elseif(FORCE_32_BIT)

0 commit comments

Comments
 (0)