summaryrefslogtreecommitdiff
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
parent9c9612d4679e4091af7aabc797e3a6ecbe7d3733 (diff)
support gccgo tool
-rw-r--r--xmake/platforms/linux/check.lua9
-rwxr-xr-xxmake/tools/gccgo.lua52
2 files changed, 58 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
diff --git a/xmake/tools/gccgo.lua b/xmake/tools/gccgo.lua
new file mode 100755
index 000000000..48bb5ee19
--- /dev/null
+++ b/xmake/tools/gccgo.lua
@@ -0,0 +1,52 @@
+--!The Make-like Build Utility based on Lua
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements. See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership. The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License. You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015 - 2017, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file gccgo.lua
+--
+
+-- inherit gcc
+inherit("gcc")
+
+-- init it
+function init(shellname, kind)
+
+ -- init super
+ _super.init(shellname or "gccgo", kind)
+end
+
+-- check the given flags
+function check(flags)
+
+ -- make an stub source file
+ local objectfile = os.tmpfile() .. ".o"
+ local sourcefile = os.tmpfile() .. ".go"
+
+ -- make stub code
+ io.write(sourcefile, "package main\nfunc main() {\n}")
+
+ -- check it
+ os.run("%s -c %s -o %s %s", _super._g.shellname, ifelse(flags, flags, ""), objectfile, sourcefile)
+
+ -- remove files
+ os.rm(objectfile)
+ os.rm(sourcefile)
+end
+