diff options
| author | ruki <[email protected]> | 2015-05-27 08:44:21 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-05-27 08:44:21 +0800 |
| commit | 80f92040764d0e4d6c89c5f8d82f4a8dc1b54902 (patch) | |
| tree | 3e43d832af7e74fed0d79d7656058fbed694dc3c /xmake/scripts/platform/android/_android.lua | |
| parent | 0e3df610b7db95590a9ad32eccfc7b2b2319b128 (diff) | |
add prober to ios platform
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 |
