summaryrefslogtreecommitdiff
path: root/xmake/core/tool/toolchain.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-25 00:53:59 +0800
committerruki <[email protected]>2025-01-25 00:53:59 +0800
commit04c8ea3b4ea7dca2bb60c64057c6e9d43862696c (patch)
treef2c7d5bd2a4ca754c1e042585125fb72089abfa5 /xmake/core/tool/toolchain.lua
parent4758d5fb50863ebefc7c7cdb3d3bf3670843cd82 (diff)
add cl6x modules
Diffstat (limited to 'xmake/core/tool/toolchain.lua')
-rw-r--r--xmake/core/tool/toolchain.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/xmake/core/tool/toolchain.lua b/xmake/core/tool/toolchain.lua
index 1085df198..a19413d34 100644
--- a/xmake/core/tool/toolchain.lua
+++ b/xmake/core/tool/toolchain.lua
@@ -640,15 +640,6 @@ function toolchain.directories()
return dirs
end
--- add toolchain directories
-function toolchain.add_directories(...)
- local dirs = toolchain.directories()
- for _, dir in ipairs({...}) do
- table.insert(dirs, 1, dir)
- end
- toolchain._DIRS = table.unique(dirs)
-end
-
-- load toolchain
function toolchain.load(name, opt)