diff options
Diffstat (limited to 'xmake/scripts/platform/android/_android.lua')
| -rw-r--r-- | xmake/scripts/platform/android/_android.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xmake/scripts/platform/android/_android.lua b/xmake/scripts/platform/android/_android.lua index 93920dcc6..9de364e77 100644 --- a/xmake/scripts/platform/android/_android.lua +++ b/xmake/scripts/platform/android/_android.lua @@ -26,6 +26,9 @@ local _android = _android or {} -- init host _android._HOST = xmake._HOST +-- init architectures +_android._ARCHS = {"armv5te", "armv6", "armv7-a"} + -- make configure function _android.make(configs) @@ -35,10 +38,6 @@ function _android.make(configs) configs.formats.object = {"", ".o"} configs.formats.shared = {"", ".so"} - -- init the architecture scopes - configs.archs = {} - configs.archs.armv5te = {} - configs.archs.armv6 = {} end -- get the option menu for action: xmake config or global |
