Generate configs

- Rename old Windows and Linux
- Add Android x86_64 and aarch64
This commit is contained in:
Joel Linn 2021-09-13 20:49:03 +02:00 committed by Rick Gibbed
parent 09eac851ef
commit e802bd3f99
5 changed files with 5426 additions and 4 deletions

View File

@ -1,7 +1,15 @@
#if defined(_WIN32) #if defined(WIN32) || defined(_WIN32)
#include "config_win.h" #include "config_windows_x86_64.h"
#elif defined(__linux) #elif defined(__gnu_linux__)
#include "config_lin.h" #include "config_linux_x86_64.h"
#elif defined(__ANDROID__)
#if defined(__aarch64__)
#include "config_android_aarch64.h"
#elif defined(__amd64__)
#include "config_android_x86_64.h"
#elif
#error "android arch unsupported"
#endif
#else #else
#error "no config" #error "no config"
#endif #endif

2707
config_android_aarch64.h Normal file

File diff suppressed because it is too large Load Diff

2707
config_android_x86_64.h Normal file

File diff suppressed because it is too large Load Diff