mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 03:29:43 +00:00
Generate configs
- Rename old Windows and Linux - Add Android x86_64 and aarch64
This commit is contained in:
parent
09eac851ef
commit
e802bd3f99
16
config.h
16
config.h
@ -1,7 +1,15 @@
|
||||
#if defined(_WIN32)
|
||||
#include "config_win.h"
|
||||
#elif defined(__linux)
|
||||
#include "config_lin.h"
|
||||
#if defined(WIN32) || defined(_WIN32)
|
||||
#include "config_windows_x86_64.h"
|
||||
#elif defined(__gnu_linux__)
|
||||
#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
|
||||
#error "no config"
|
||||
#endif
|
||||
|
2707
config_android_aarch64.h
Normal file
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
2707
config_android_x86_64.h
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user