We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37386af commit 644b592Copy full SHA for 644b592
.github/workflows/build-macos.yml
@@ -10,7 +10,7 @@ on:
10
jobs:
11
build:
12
13
- runs-on: macos-14
+ runs-on: macos-15
14
env:
15
release_name: release-darwin-x86_64
16
src/qcommon/q_platform.h
@@ -174,6 +174,12 @@ extern "C" {
174
#define idx64 1
175
#define ARCH_STRING "x86_64"
176
#define Q3_LITTLE_ENDIAN
177
+ #elif defined __aarch64__
178
+ #define ARCH_STRING "arm64"
179
+ #define Q3_LITTLE_ENDIAN
180
+ #ifndef NO_VM_COMPILED
181
+ #define NO_VM_COMPILED
182
+ #endif
183
#endif
184
185
#define DLL_EXT ".dylib"
0 commit comments