diff options
| author | iFarbod <[email protected]> | 2024-10-30 22:35:40 +0330 |
|---|---|---|
| committer | iFarbod <[email protected]> | 2024-10-30 22:35:40 +0330 |
| commit | 8e8f6f6cfbf3f00ba86f977947f7d38c250f5c11 (patch) | |
| tree | 86827f85ab5f6f89f8b2ab1f78f12a0ee04fde48 /xmake/platforms/android | |
| parent | d58c9bcd0475d513da4dfb5e17a71ec1644529a7 (diff) | |
Add riscv64 support for Android NDK projects
Diffstat (limited to 'xmake/platforms/android')
| -rw-r--r-- | xmake/platforms/android/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/platforms/android/xmake.lua b/xmake/platforms/android/xmake.lua index 4199dbcc6..1db33fe51 100644 --- a/xmake/platforms/android/xmake.lua +++ b/xmake/platforms/android/xmake.lua @@ -29,7 +29,7 @@ platform("android") -- @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", "x86", "x86_64", "mips", "mip64") + set_archs("armeabi", "armeabi-v7a", "arm64-v8a", "riscv64", "x86", "x86_64", "mips", "mip64") set_formats("static", "lib$(name).a") set_formats("object", "$(name).o") |
