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/linux/_linux.lua | |
| parent | 0e3df610b7db95590a9ad32eccfc7b2b2319b128 (diff) | |
add prober to ios platform
Diffstat (limited to 'xmake/scripts/platform/linux/_linux.lua')
| -rw-r--r-- | xmake/scripts/platform/linux/_linux.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xmake/scripts/platform/linux/_linux.lua b/xmake/scripts/platform/linux/_linux.lua index e33a81d8f..4b70986c4 100644 --- a/xmake/scripts/platform/linux/_linux.lua +++ b/xmake/scripts/platform/linux/_linux.lua @@ -26,6 +26,9 @@ local _linux = _linux or {} -- init host _linux._HOST = "linux" +-- init architectures +_linux._ARCHS = {"x86", "x64"} + -- make configure function _linux.make(configs) @@ -34,11 +37,6 @@ function _linux.make(configs) configs.formats.static = {"lib", ".a"} configs.formats.object = {"", ".o"} configs.formats.shared = {"", ".so"} - - -- init the architecture scopes - configs.archs = {} - configs.archs.x86 = {} - configs.archs.x64 = {} end -- get the option menu for action: xmake config or global |
