mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
Issue #1053 - Remove __ANDROID__ defines (except in third party code)
This commit is contained in:
parent
a29e342411
commit
b8f2ada817
10 changed files with 17 additions and 137 deletions
|
|
@ -30,21 +30,11 @@
|
|||
# define LUL_ARCH_x64 1
|
||||
# define LUL_OS_linux 1
|
||||
|
||||
#elif defined(__linux__) && defined(__i386__) && !defined(__ANDROID__)
|
||||
#elif defined(__linux__) && defined(__i386__)
|
||||
# define LUL_PLAT_x86_linux 1
|
||||
# define LUL_ARCH_x86 1
|
||||
# define LUL_OS_linux 1
|
||||
|
||||
#elif defined(__ANDROID__) && defined(__arm__)
|
||||
# define LUL_PLAT_arm_android 1
|
||||
# define LUL_ARCH_arm 1
|
||||
# define LUL_OS_android 1
|
||||
|
||||
#elif defined(__ANDROID__) && defined(__i386__)
|
||||
# define LUL_PLAT_x86_android 1
|
||||
# define LUL_ARCH_x86 1
|
||||
# define LUL_OS_android 1
|
||||
|
||||
#else
|
||||
# error "Unsupported platform"
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue