summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-08-22 00:31:54 +0800
committerruki <[email protected]>2024-08-23 08:14:32 +0800
commit84f170de57c8c58d37ccdefed7ad99e6c0c3ae48 (patch)
tree3841604fb1045b0ff258638842b4a6ee918059fb
parent1799d2ce7712d292c006d279e48d2c2f79894049 (diff)
remove some old codes
-rw-r--r--xmake/core/project/project.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/xmake/core/project/project.lua b/xmake/core/project/project.lua
index af92f8998..5878ffead 100644
--- a/xmake/core/project/project.lua
+++ b/xmake/core/project/project.lua
@@ -714,13 +714,6 @@ function project.interpreter()
if type(result) == "function" then
result = result()
end
-
- -- attempt to get it from the platform tools, e.g. cc, cxx, ld ..
- -- because these values may not exist in config cache when call `config.get()`, we need check and get it.
- --
- if not result then
- result = platform.tool(variable)
- end
end
return result
end)