diff options
| author | ruki <[email protected]> | 2019-04-28 21:24:25 +0900 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-04-28 21:24:25 +0900 |
| commit | 2f36d5f5cd54d49ffe7eff324dc0522451deaae5 (patch) | |
| tree | dfb4f8bc4cdb179f722ae3c608505b2de659fb2a /xmake/platforms/android/xmake.lua | |
| parent | 6051aaec944bc40dd8e53316bdd88451b14a8a19 (diff) | |
improve on_install for host
Diffstat (limited to 'xmake/platforms/android/xmake.lua')
| -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 a4985a3eb..04b18db05 100644 --- a/xmake/platforms/android/xmake.lua +++ b/xmake/platforms/android/xmake.lua @@ -28,7 +28,7 @@ platform("android") set_hosts("macosx", "linux", "windows") -- set archs - set_archs("armv5te", "armv7-a", "arm64-v8a", "mips", "mips64", "i386", "x86_64") + set_archs("armv7-a", "arm64-v8a", "armv5te", "mips", "mips64", "i386", "x86_64") -- set formats set_formats {static = "lib$(name).a", object = "$(name).o", shared = "lib$(name).so", symbol = "$(name).sym"} |
