summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-27 09:07:48 +0800
committerruki <[email protected]>2017-02-27 09:07:48 +0800
commitb468766f9a45ffb721dd82363f44539644d3d08d (patch)
tree9ec135140fffcf592c11a8d49a5ab531276349ae
parentbe7af17fc8a42cf13e8f56e11439a4fa42365da3 (diff)
remove rust ld and ar tools
-rw-r--r--xmake/platforms/linux/check.lua3
-rw-r--r--xmake/platforms/macosx/check.lua3
-rw-r--r--xmake/platforms/windows/check.lua5
3 files changed, 1 insertions, 10 deletions
diff --git a/xmake/platforms/linux/check.lua b/xmake/platforms/linux/check.lua
index e7faa5154..4dc2f8c40 100644
--- a/xmake/platforms/linux/check.lua
+++ b/xmake/platforms/linux/check.lua
@@ -121,9 +121,6 @@ function _check_toolchains(config)
-- check for rust tools
checker.check_toolchain(config, "rc", "", "rustc", "the rust compiler")
- checker.check_toolchain(config, "rc-ar", "", "rustc", "the rust static library archiver")
- checker.check_toolchain(config, "rc-sh", "", "rustc", "the rust shared library linker")
- checker.check_toolchain(config, "rc-ld", "", "rustc", "the rust linker")
end
-- check it
diff --git a/xmake/platforms/macosx/check.lua b/xmake/platforms/macosx/check.lua
index 92af39162..f4f247a07 100644
--- a/xmake/platforms/macosx/check.lua
+++ b/xmake/platforms/macosx/check.lua
@@ -78,9 +78,6 @@ function _check_toolchains(config)
-- check for rust tools
checker.check_toolchain(config, "rc", "", "rustc", "the rust compiler")
- checker.check_toolchain(config, "rc-ar", "", "rustc", "the rust static library archiver")
- checker.check_toolchain(config, "rc-sh", "", "rustc", "the rust shared library linker")
- checker.check_toolchain(config, "rc-ld", "", "rustc", "the rust linker")
end
-- check it
diff --git a/xmake/platforms/windows/check.lua b/xmake/platforms/windows/check.lua
index d178d4ff4..4a7955ecc 100644
--- a/xmake/platforms/windows/check.lua
+++ b/xmake/platforms/windows/check.lua
@@ -228,10 +228,7 @@ function _check_toolchains(config)
checker.check_toolchain(config, "dc-ld", "", "gdc", "the dlang linker")
-- check for rust tools
- checker.check_toolchain(config, "rc", "", "rustc", "the rust compiler")
- checker.check_toolchain(config, "rc-ar", "", "rustc", "the rust static library archiver")
- checker.check_toolchain(config, "rc-sh", "", "rustc", "the rust shared library linker")
- checker.check_toolchain(config, "rc-ld", "", "rustc", "the rust linker")
+ checker.check_toolchain(config, "rc", "", "rustc", "the rust compiler")
end
-- check the debugger