summaryrefslogtreecommitdiff
path: root/xmake/platforms/linux/check.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-27 14:51:26 +0800
committerruki <[email protected]>2017-02-27 14:51:26 +0800
commit65f49bd7b23dbbb2516b93518906f451cd35a7c0 (patch)
treee489db5c253bf021b7d3a58c899a8d5bc793592e /xmake/platforms/linux/check.lua
parent7d1939d7dcc6f18f5cef9a4d443e44cfa4bdefa5 (diff)
rename go tool kind to gc
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")