diff options
author | Ian Lance Taylor <iant@google.com> | 2015-01-09 21:23:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-01-09 21:23:09 +0000 |
commit | bf1de3f0ac48e095e9446a2408649766bf5a947c (patch) | |
tree | ac01f2f285980d0d29dd2d65f8bea8c6f69f3ea9 /gotools/README | |
parent | b44fb4c37a4697dfd50c37282c9d2ec2bd3aa95a (diff) | |
download | gcc-bf1de3f0ac48e095e9446a2408649766bf5a947c.zip gcc-bf1de3f0ac48e095e9446a2408649766bf5a947c.tar.gz gcc-bf1de3f0ac48e095e9446a2408649766bf5a947c.tar.bz2 |
configure.ac (host_tools): Add gotools.
./:2015-01-09 Ian Lance Taylor <iant@google.com>
* configure.ac (host_tools): Add gotools.
* Makefile.def (host_modules): Add gotools.
(dependencies): Add dependency of all-gotools on all-target-libgo.
gcc/go/:
2015-01-09 Ian Lance Taylor <iant@google.com>
* config-lang.in (lang_dirs): Define.
gotools/:
2015-01-09 Ian Lance Taylor <iant@google.com>
* Initial implementation.
From-SVN: r219407
Diffstat (limited to 'gotools/README')
-rw-r--r-- | gotools/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gotools/README b/gotools/README new file mode 100644 index 0000000..2aed820 --- /dev/null +++ b/gotools/README @@ -0,0 +1,13 @@ +This directory builds tools used by people working in the Go language. +The source code for these tools lives in libgo/go/cmd, where it is +copied from the master gofrontend repository. This directory contains +only the configure/Makefile instructions required to build the tools. + +This directory builds two programs for general use: go and gofmt. It +also builds one program for internal use by the go tool: cgo. For +more information on these tools see the doc.go files in the relevant +source code, which can also be seen hosted at golang.org: + +http://golang.org/cmd/go +http://golang.org/cmd/gofmt +http://golang.org/cmd/cgo |