Skip to content

Commit

Permalink
Add Windows ARM64 support
Browse files Browse the repository at this point in the history
Separates the `Windows` platform into `Windows-x86_64` and
`Windows-ARM64`.
  • Loading branch information
Wunkolo committed Apr 27, 2024
1 parent 15ece08 commit 1c15cb6
Show file tree
Hide file tree
Showing 6 changed files with 2,724 additions and 10 deletions.
6 changes: 6 additions & 0 deletions config.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#if defined(WIN32) || defined(_WIN32)
#if defined(__aarch64__)
#include "config_windows_aarch64.h"
#elif defined(__amd64__)
#include "config_windows_x86_64.h"
#elif
#error "windows arch unsupported"
#endif
#elif defined(__gnu_linux__)
#include "config_linux_x86_64.h"
#elif defined(__ANDROID__)
Expand Down
Loading

0 comments on commit 1c15cb6

Please sign in to comment.