diff options
| author | ruki <[email protected]> | 2024-07-29 13:51:56 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-29 13:51:56 +0800 |
| commit | 8cd2a3b8318084daeafec233cb7670920dfd3aa3 (patch) | |
| tree | a28427b1551f20c1ccb8aedb9feb9c9cb141a308 | |
| parent | 58987a44d287590230fc43f74d71036ebaa23454 (diff) | |
| parent | 129b3b8569b36b637c1cfb7b92b0ab8b995f5276 (diff) | |
Merge pull request #5408 from shuax/dev
fix vcpkg android armeabi-v7a
| -rw-r--r-- | xmake/modules/package/manager/vcpkg/configurations.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/package/manager/vcpkg/configurations.lua b/xmake/modules/package/manager/vcpkg/configurations.lua index 12bc5f5bd..e74bd9247 100644 --- a/xmake/modules/package/manager/vcpkg/configurations.lua +++ b/xmake/modules/package/manager/vcpkg/configurations.lua @@ -25,8 +25,8 @@ function arch(arch) i386 = "x86", -- android: armeabi armeabi-v7a arm64-v8a x86 x86_64 mips mip64 - -- Offers a doc: https://github.com/microsoft/vcpkg/blob/master/docs/users/android.md - ["armeabi-v7a"] = "arm", + -- Offers a doc: https://github.com/microsoft/vcpkg/tree/master/triplets + ["armeabi-v7a"] = "arm-neon", ["arm64-v8a"] = "arm64", -- ios: arm64 armv7 armv7s i386 |
