Skip to content

Commit 1c15cb6

Browse files
committed
Add Windows ARM64 support
Separates the `Windows` platform into `Windows-x86_64` and `Windows-ARM64`.
1 parent 15ece08 commit 1c15cb6

File tree

6 files changed

+2724
-10
lines changed

6 files changed

+2724
-10
lines changed

config.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#if defined(WIN32) || defined(_WIN32)
2+
#if defined(__aarch64__)
3+
#include "config_windows_aarch64.h"
4+
#elif defined(__amd64__)
25
#include "config_windows_x86_64.h"
6+
#elif
7+
#error "windows arch unsupported"
8+
#endif
39
#elif defined(__gnu_linux__)
410
#include "config_linux_x86_64.h"
511
#elif defined(__ANDROID__)

0 commit comments

Comments
 (0)