summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-25 00:57:44 +0800
committerruki <[email protected]>2025-01-25 00:57:44 +0800
commitd1b1492b07d370f9cf06414490fc489c1dda6ed8 (patch)
treec339b2365597111f6f6f7d9ab7b42498af16c2c5
parentd52893b18d6f837b10a61ac21b52da26238b201f (diff)
move parse_deps.lua
-rw-r--r--tests/apis/custom_toolchain/toolchains/modules/core/tools/cl6x/parse_deps.lua (renamed from tests/apis/custom_toolchain/toolchains/modules/private/tools/cl6x/parse_deps.lua)0
-rw-r--r--xmake/modules/core/project/depend.lua2
-rw-r--r--xmake/modules/core/tools/armcc/parse_deps.lua (renamed from xmake/modules/private/tools/armcc/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/cl/parse_deps.lua (renamed from xmake/modules/private/tools/cl/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/cl/parse_deps_json.lua (renamed from xmake/modules/private/tools/cl/parse_deps_json.lua)0
-rw-r--r--xmake/modules/core/tools/cl/parse_include.lua (renamed from xmake/modules/private/tools/cl/parse_include.lua)0
-rw-r--r--xmake/modules/core/tools/cl2000/parse_deps.lua (renamed from xmake/modules/private/tools/cl2000/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/cl6x/parse_deps.lua (renamed from xmake/modules/private/tools/cl6x/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/cl_json/parse_deps.lua (renamed from xmake/modules/private/tools/cl_json/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/gcc/parse_deps.lua (renamed from xmake/modules/private/tools/gcc/parse_deps.lua)0
-rw-r--r--xmake/modules/core/tools/rc/parse_deps.lua (renamed from xmake/modules/private/tools/rc/parse_deps.lua)0
11 files changed, 1 insertions, 1 deletions
diff --git a/tests/apis/custom_toolchain/toolchains/modules/private/tools/cl6x/parse_deps.lua b/tests/apis/custom_toolchain/toolchains/modules/core/tools/cl6x/parse_deps.lua
index a5d5ecd40..a5d5ecd40 100644
--- a/tests/apis/custom_toolchain/toolchains/modules/private/tools/cl6x/parse_deps.lua
+++ b/tests/apis/custom_toolchain/toolchains/modules/core/tools/cl6x/parse_deps.lua
diff --git a/xmake/modules/core/project/depend.lua b/xmake/modules/core/project/depend.lua
index 4f81481bb..05b93acf1 100644
--- a/xmake/modules/core/project/depend.lua
+++ b/xmake/modules/core/project/depend.lua
@@ -44,7 +44,7 @@ function _get_depfiles_parser(depfiles_format)
end
local parser = depfiles_parsers[depfiles_format]
if parser == nil then
- parser = import("private.tools." .. depfiles_format .. ".parse_deps", {anonymous = true})
+ parser = import("core.tools." .. depfiles_format .. ".parse_deps", {anonymous = true})
depfiles_parsers[depfiles_format] = parser or false
end
return parser or nil
diff --git a/xmake/modules/private/tools/armcc/parse_deps.lua b/xmake/modules/core/tools/armcc/parse_deps.lua
index afde0a575..afde0a575 100644
--- a/xmake/modules/private/tools/armcc/parse_deps.lua
+++ b/xmake/modules/core/tools/armcc/parse_deps.lua
diff --git a/xmake/modules/private/tools/cl/parse_deps.lua b/xmake/modules/core/tools/cl/parse_deps.lua
index 187d655cd..187d655cd 100644
--- a/xmake/modules/private/tools/cl/parse_deps.lua
+++ b/xmake/modules/core/tools/cl/parse_deps.lua
diff --git a/xmake/modules/private/tools/cl/parse_deps_json.lua b/xmake/modules/core/tools/cl/parse_deps_json.lua
index 50f728815..50f728815 100644
--- a/xmake/modules/private/tools/cl/parse_deps_json.lua
+++ b/xmake/modules/core/tools/cl/parse_deps_json.lua
diff --git a/xmake/modules/private/tools/cl/parse_include.lua b/xmake/modules/core/tools/cl/parse_include.lua
index 700f9823f..700f9823f 100644
--- a/xmake/modules/private/tools/cl/parse_include.lua
+++ b/xmake/modules/core/tools/cl/parse_include.lua
diff --git a/xmake/modules/private/tools/cl2000/parse_deps.lua b/xmake/modules/core/tools/cl2000/parse_deps.lua
index e02cf0501..e02cf0501 100644
--- a/xmake/modules/private/tools/cl2000/parse_deps.lua
+++ b/xmake/modules/core/tools/cl2000/parse_deps.lua
diff --git a/xmake/modules/private/tools/cl6x/parse_deps.lua b/xmake/modules/core/tools/cl6x/parse_deps.lua
index a5d5ecd40..a5d5ecd40 100644
--- a/xmake/modules/private/tools/cl6x/parse_deps.lua
+++ b/xmake/modules/core/tools/cl6x/parse_deps.lua
diff --git a/xmake/modules/private/tools/cl_json/parse_deps.lua b/xmake/modules/core/tools/cl_json/parse_deps.lua
index 21b3c9a9d..21b3c9a9d 100644
--- a/xmake/modules/private/tools/cl_json/parse_deps.lua
+++ b/xmake/modules/core/tools/cl_json/parse_deps.lua
diff --git a/xmake/modules/private/tools/gcc/parse_deps.lua b/xmake/modules/core/tools/gcc/parse_deps.lua
index b4b5cba7f..b4b5cba7f 100644
--- a/xmake/modules/private/tools/gcc/parse_deps.lua
+++ b/xmake/modules/core/tools/gcc/parse_deps.lua
diff --git a/xmake/modules/private/tools/rc/parse_deps.lua b/xmake/modules/core/tools/rc/parse_deps.lua
index 778f7b03f..778f7b03f 100644
--- a/xmake/modules/private/tools/rc/parse_deps.lua
+++ b/xmake/modules/core/tools/rc/parse_deps.lua