summaryrefslogtreecommitdiff
path: root/xmake/platforms/android/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-03-27 22:46:18 +0800
committerruki <[email protected]>2020-03-27 10:37:53 +0800
commit472d1c7a36650f113d0c9fc2f66ea2c129c1e565 (patch)
treee683b625473d8f7ceb7507eb9ce3a8ebb3a9b843 /xmake/platforms/android/xmake.lua
parentcc6c658afd45b154be37382c8a99ff46748d48b3 (diff)
improve android abi again
Diffstat (limited to 'xmake/platforms/android/xmake.lua')
-rw-r--r--xmake/platforms/android/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/platforms/android/xmake.lua b/xmake/platforms/android/xmake.lua
index 8d60b8373..f591cc062 100644
--- a/xmake/platforms/android/xmake.lua
+++ b/xmake/platforms/android/xmake.lua
@@ -29,12 +29,12 @@ platform("android")
-- set archs, we use the latest android abi provided in android ndk now.
-- we will continue to support the old abi architectures for old version ndk.
- -- e.g. armv5te(armeabi), armv7-a(armeabi-v7a), mips, mips64
+ -- e.g. armv5te(armeabi), armv7-a(armeabi-v7a), mips, mips64, i386
--
-- @see https://developer.android.google.cn/ndk/guides/abis
-- @note The NDK previously supported ARMv5 (armeabi) and 32-bit and 64-bit MIPS, but this support has been removed in NDK r17.
--
- set_archs("armeabi", "armeabi-v7a", "arm64-v8a", "i386", "x86_64", "mips", "mip64")
+ set_archs("armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64", "mips", "mip64")
-- set formats
set_formats {static = "lib$(name).a", object = "$(name).o", shared = "lib$(name).so", symbol = "$(name).sym"}