summaryrefslogtreecommitdiff
path: root/xmake/platforms/linux/check.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/platforms/linux/check.lua')
-rw-r--r--xmake/platforms/linux/check.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmake/platforms/linux/check.lua b/xmake/platforms/linux/check.lua
index e7faa5154..cbe89854b 100644
--- a/xmake/platforms/linux/check.lua
+++ b/xmake/platforms/linux/check.lua
@@ -98,12 +98,12 @@ function _check_toolchains(config)
checker.check_toolchain(config, "as", cross, "gcc", "the assember")
-- check for golang tools
- checker.check_toolchain(config, "go", "", "go", "the golang compiler")
- checker.check_toolchain(config, "go", "", "gccgo", "the golang compiler")
- checker.check_toolchain(config, "go-ar", "", "go", "the golang static library archiver")
- checker.check_toolchain(config, "go-ar", "", "gccgo", "the golang static library archiver")
- checker.check_toolchain(config, "go-ld", "", "go", "the golang linker")
- checker.check_toolchain(config, "go-ld", "", "gccgo", "the golang linker")
+ checker.check_toolchain(config, "gc", "", "go", "the golang compiler")
+ checker.check_toolchain(config, "gc", "", "gccgo", "the golang compiler")
+ checker.check_toolchain(config, "gc-ar", "", "go", "the golang static library archiver")
+ checker.check_toolchain(config, "gc-ar", "", "gccgo", "the golang static library archiver")
+ checker.check_toolchain(config, "gc-ld", "", "go", "the golang linker")
+ checker.check_toolchain(config, "gc-ld", "", "gccgo", "the golang linker")
-- check for dlang tools
checker.check_toolchain(config, "dc", "", "dmd", "the dlang compiler")