summaryrefslogtreecommitdiff
path: root/package/go-bootstrap
AgeCommit message (Collapse)Author
2016-10-16package/go-bootstrap: bump version to 1.4.3Bernd Kuhls
This bump includes https://go.googlesource.com/go/+/a527bdbda39c48fa772d8d54eb6b849f240442c1 which fixes a gcc6-related compile error cmd/6c /home/buildroot/br2/output/build/host-go-bootstrap-1.4.2/src/cmd/6c/txt.c: In function 'gmove': /home/buildroot/br2/output/build/host-go-bootstrap-1.4.2/src/cmd/6c/txt.c:995:28: error: left shift of negative value [-Werror=shift-negative-value] f->vconst |= (vlong)~0 << 32; ^~ /home/buildroot/br2/output/build/host-go-bootstrap-1.4.2/src/cmd/6c/txt.c:1045:28: error: left shift of negative value [-Werror=shift-negative-value] f->vconst |= (vlong)~0 << 32; ^~ cc1: all warnings being treated as errors not yet caught by autobuilders using this defconfig: http://autobuild.buildroot.net/results/394/394e22be0ef986463e97b3040dad8f978262732c/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-07-04package/go-bootstrap: Build host tools with host CCGeoff Levand
Use the host compiler when building host tools. The go build system is not compatable with ccache, so use HOSTCC_NOCCACHE here. See https://github.com/golang/go/issues/11685. Signed-off-by: Geoff Levand <geoff@infradead.org> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-05-12package/go-bootstrap: Set CGO_ENABLED=0Geoff Levand
Fixes build erorros like these: cgo.a(_all.o): unknown relocation type 42; compiled without -fpic? Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-05-12package/go-bootstrap: Add toolchain dependencyGeoff Levand
To build programs that need cgo support the toolchain needs to be available. Cc: Christian Stewart <christian@paral.in> Signed-off-by: Geoff Levand <geoff@infradead.org> [Thomas: add comment in the code about the toolchain dependency.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-04-20go-bootstrap: new host packageGeoff Levand
Add a new package go-bootstrap which builds a bootstrap compiler for the go programming language. Signed-off-by: Geoff Levand <geoff@infradead.org> [Thomas: - Rename GO_BOOTSTRAP_FINAL to HOST_GO_BOOTSTRAP_ROOT. Use the HOST_ prefix because this variable is specific to the host variant. And it's not "final" at all, but rather the "root" of the Go Bootstrap installation. - Rename GO_BOOTSTRAP_MAKE_ENV to HOST_GO_BOOTSTRAP_MAKE_ENV, also to have the HOST_ prefix because it's a host package.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>