summaryrefslogtreecommitdiffstats
path: root/plugins/go
Commit message (Collapse)AuthorAgeFilesLines
* go: update from 1.7.4 to 1.8Boris Nagaev2017-02-182-109/+2
| | | | | | Release notes of new release: https://golang.org/doc/go1.8 The patch adding support of PKG_CONFIG is not needed anymore: it was merged to upstream: https://github.com/golang/go/commit/5dcb31b2d55
* go: remove target directory before copying to itBoris Nagaev2017-02-181-0/+1
| | | | | Otherwise when the version is updated and the package is rebuilt, the target directory contains two mixed installations.
* update Go to 1.7.4Boris Nagaev2016-12-051-2/+2
|
* update go to 1.7.3Boris Nagaev2016-11-241-3/+3
|
* fix build of go-native on Debian 8 StretchBoris Nagaev2016-11-171-0/+171
| | | | See https://github.com/golang/go/issues/13896
* s/environmental variable/environment variable/Boris Nagaev2016-10-021-2/+2
| | | | "Environment variable" is more commonly used.
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-273-6/+3
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* README of go plugin: use make var. instead of envBoris Nagaev2016-07-061-1/+1
|
* go plugin: fix build on darwinTony Theodore2016-07-062-0/+3
| | | | | | | | | | | | | | | | | | | | | build fails with: ``` fatal error: runtime: bsdthread_register error (unset DYLD_INSERT_LIBRARIES) ``` building with `-ldflags -linkmode=external`[1] and `CGO_ENABLED=1` has no affect on `go-native`, it does let `go` bootstrap, but then fails with a similar error: ``` fatal error: runtime: bsdthread_register error ``` easiest to unset DYLD_INSERT_LIBRARIES - no need to check for `darwin` as it only exists on that platform. [1] https://github.com/golang/go/issues/8801#issuecomment-66460009
* add Go pluginBoris Nagaev2016-07-055-0/+239