From 4612e62cc31a036770009b0b96f7044fcb7faecd Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Thu, 1 Feb 2024 12:49:31 -0500 Subject: [PATCH] ci: fix aarch64 build typo --- libsql-ffi/bundled/SQLite3MultipleCiphers/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsql-ffi/bundled/SQLite3MultipleCiphers/CMakeLists.txt b/libsql-ffi/bundled/SQLite3MultipleCiphers/CMakeLists.txt index 1329b3b253..d939e62ed5 100644 --- a/libsql-ffi/bundled/SQLite3MultipleCiphers/CMakeLists.txt +++ b/libsql-ffi/bundled/SQLite3MultipleCiphers/CMakeLists.txt @@ -277,7 +277,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux" # Do not set `-maes -msee4.2` when we are on arm which doesn't support # this instruction set. - if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarach64" + if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")