summaryrefslogtreecommitdiff
path: root/xmake/platforms/linux/check.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-17 23:24:05 +0800
committerruki <[email protected]>2017-02-17 23:24:05 +0800
commit9ddb20b2f1e5c494168449e1faa47bcd49e95491 (patch)
treea46e68efb549c698687cc0a32369a4c195ce8814 /xmake/platforms/linux/check.lua
parent9c9612d4679e4091af7aabc797e3a6ecbe7d3733 (diff)
support gccgo tool
Diffstat (limited to 'xmake/platforms/linux/check.lua')
-rw-r--r--xmake/platforms/linux/check.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/xmake/platforms/linux/check.lua b/xmake/platforms/linux/check.lua
index 0b8679fa1..12c42e459 100644
--- a/xmake/platforms/linux/check.lua
+++ b/xmake/platforms/linux/check.lua
@@ -115,9 +115,12 @@ function _check_toolchains(config)
checker.check_toolchain(config, "dd", cross, "lldb", "the debugger")
-- check for go tools
- checker.check_toolchain(config, "go", "", "go", "the golang compiler")
- checker.check_toolchain(config, "go-ar","", "go", "the golang archiver")
- checker.check_toolchain(config, "go-ld","", "go", "the golang linker")
+ 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 archiver")
+ checker.check_toolchain(config, "go-ar","", "gccgo", "the golang archiver")
+ checker.check_toolchain(config, "go-ld","", "go", "the golang linker")
+ checker.check_toolchain(config, "go-ld","", "gccgo", "the golang linker")
end
-- check it