Skip to content

Commit 7016767

Browse files
committed
fixup: quick update, squash later
1 parent 313a207 commit 7016767

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
arch: x86_64
5050
cc: gcc-10
5151
- runner: ubuntu-24.04-arm
52-
arch: aarch64
52+
arch: arm64
5353
runs-on: ${{ matrix.runner }}
5454
env:
5555
CC: ${{ matrix.cc }}

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ if(XCODE)
1919
message(FATAL_ERROR [[Xcode generator is not supported. Use "Ninja" or "Unix Makefiles" instead]])
2020
endif()
2121

22+
if(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
23+
set(CMAKE_SYSTEM_PROCESSOR arm64)
24+
endif()
25+
2226
# Point CMake at any custom modules we may ship
2327
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
2428

0 commit comments

Comments
 (0)