We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313a207 commit 7016767Copy full SHA for 7016767
.github/workflows/release.yml
@@ -49,7 +49,7 @@ jobs:
49
arch: x86_64
50
cc: gcc-10
51
- runner: ubuntu-24.04-arm
52
- arch: aarch64
+ arch: arm64
53
runs-on: ${{ matrix.runner }}
54
env:
55
CC: ${{ matrix.cc }}
CMakeLists.txt
@@ -19,6 +19,10 @@ if(XCODE)
19
message(FATAL_ERROR [[Xcode generator is not supported. Use "Ninja" or "Unix Makefiles" instead]])
20
endif()
21
22
+if(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
23
+ set(CMAKE_SYSTEM_PROCESSOR arm64)
24
+endif()
25
+
26
# Point CMake at any custom modules we may ship
27
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
28
0 commit comments