summaryrefslogtreecommitdiff
path: root/xmake/core/tool/tool.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-06-20 16:07:21 +0800
committerruki <[email protected]>2020-06-20 16:07:21 +0800
commitda2e3b83c53752c43b651effeb273cb72090d7b0 (patch)
tree0a66afa1a6b6facc6753e970fe66c17343650516 /xmake/core/tool/tool.lua
parent281e06a020f7704fe998be52a6ecc2711cfd4fb7 (diff)
add runenvs for cl/link
Diffstat (limited to 'xmake/core/tool/tool.lua')
-rw-r--r--xmake/core/tool/tool.lua95
1 files changed, 79 insertions, 16 deletions
diff --git a/xmake/core/tool/tool.lua b/xmake/core/tool/tool.lua
index 5736ded22..b33727114 100644
--- a/xmake/core/tool/tool.lua
+++ b/xmake/core/tool/tool.lua
@@ -30,11 +30,12 @@ local table = require("base/table")
local string = require("base/string")
local config = require("project/config")
local sandbox = require("sandbox/sandbox")
+local toolchain = require("tool/toolchain")
local platform = require("platform/platform")
local import = require("sandbox/modules/import")
-- new an instance
-function _instance.new(kind, name, program)
+function _instance.new(kind, name, program, plat, arch, toolchain_inst)
-- import "core.tools.xxx"
local toolclass = nil
@@ -51,10 +52,13 @@ function _instance.new(kind, name, program)
local instance = table.inherit(_instance, toolclass)
-- save name, kind and program
- instance._NAME = name
- instance._KIND = kind
- instance._PROGRAM = program
- instance._INFO = {}
+ instance._NAME = name
+ instance._KIND = kind
+ instance._PROGRAM = program
+ instance._PLAT = plat
+ instance._ARCH = arch
+ instance._TOOLCHAIN = toolchain_inst
+ instance._INFO = {}
-- init instance
if instance.init then
@@ -78,11 +82,49 @@ function _instance:kind()
return self._KIND
end
+-- get the tool platform
+function _instance:plat()
+ return self._PLAT
+end
+
+-- get the tool architecture
+function _instance:arch()
+ return self._ARCH
+end
+
-- get the tool program
function _instance:program()
return self._PROGRAM
end
+-- get the toolchain of this tool
+function _instance:toolchain()
+ return self._TOOLCHAIN
+end
+
+-- get run environments
+function _instance:runenvs()
+ local runenvs = self._RUNENVS
+ if runenvs == nil then
+ local toolchain = self:toolchain()
+ if toolchain then
+ local toolchain_runenvs = toolchain:get("runenvs")
+ if toolchain_runenvs then
+ runenvs = {}
+ for name, values in pairs(toolchain_runenvs) do
+ if type(values) == "table" then
+ values = path.joinenv(values)
+ end
+ runenvs[name] = values
+ end
+ end
+ end
+ runenvs = runenvs or false
+ self._RUNENVS = runenvs
+ end
+ return runenvs or nil
+end
+
-- set the value to the platform info
function _instance:set(name, ...)
self._INFO[name] = table.unwrap({...})
@@ -129,19 +171,30 @@ end
-- load the given tool from the given kind
--
--- @param kind the tool kind e.g. cc, cxx, mm, mxx, as, ar, ld, sh, ..
--- @param program the tool program, e.g. /xxx/arm-linux-gcc, [email protected], (optional)
--- @param toolname gcc, clang, .. (optional)
+-- @param kind the tool kind e.g. cc, cxx, mm, mxx, as, ar, ld, sh, ..
+-- @param opt.program the tool program, e.g. /xxx/arm-linux-gcc, [email protected], (optional)
+-- @param opt.toolname gcc, clang, .. (optional)
+-- @param opt.toolchain_info the toolchain info (optional)
--
-function tool.load(kind, program, toolname)
+function tool.load(kind, opt)
+
+ -- get tool information
+ opt = opt or {}
+ local program = opt.program
+ local toolname = opt.toolname
+ local toolchain_info = opt.toolchain_info or {}
- -- init key
- local key = kind .. (program or "") .. (config.get("arch") or os.arch())
+ -- get platform and architecture
+ local plat = toolchain_info.plat or config.get("plat") or os.host()
+ local arch = toolchain_info.arch or config.get("arch") or os.arch()
+
+ -- init cachekey
+ local cachekey = kind .. (program or "") .. plat .. arch
-- get it directly from cache dirst
tool._TOOLS = tool._TOOLS or {}
- if tool._TOOLS[key] then
- return tool._TOOLS[key]
+ if tool._TOOLS[cachekey] then
+ return tool._TOOLS[cachekey]
end
-- contain toolname? parse it, e.g. '[email protected]'
@@ -155,7 +208,11 @@ function tool.load(kind, program, toolname)
-- get the tool program and name
if not program then
- program, toolname = platform.tool(kind)
+ program, toolname, toolchain_info = platform.tool(kind)
+ if toolchain_info then
+ assert(toolchain_info.plat == plat)
+ assert(toolchain_info.arch == arch)
+ end
end
if not program then
return nil, string.format("cannot get program for %s", kind)
@@ -176,14 +233,20 @@ function tool.load(kind, program, toolname)
return nil, string.format("cannot find known tool script for %s", toolname or program)
end
+ -- load toolchain instance
+ local toolchain_inst
+ if toolchain_info and toolchain_info.name then
+ toolchain_inst = toolchain.load(toolchain_info.name, plat, arch)
+ end
+
-- new an instance
- local instance, errors = _instance.new(kind, name, program)
+ local instance, errors = _instance.new(kind, name, program, plat, arch, toolchain_inst)
if not instance then
return nil, errors
end
-- save instance to the cache
- tool._TOOLS[key] = instance
+ tool._TOOLS[cachekey] = instance
-- ok
return instance