2016-04-04 21:31:49 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# go-bootstrap
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
GO_BOOTSTRAP_VERSION = 1.4.2
|
|
|
|
GO_BOOTSTRAP_SITE = https://storage.googleapis.com/golang
|
|
|
|
GO_BOOTSTRAP_SOURCE = go$(GO_BOOTSTRAP_VERSION).src.tar.gz
|
|
|
|
|
|
|
|
GO_BOOTSTRAP_LICENSE = BSD-3c
|
|
|
|
GO_BOOTSTRAP_LICENSE_FILES = LICENSE
|
|
|
|
|
2016-05-12 02:08:46 +02:00
|
|
|
# To build programs that need cgo support the toolchain needs to be
|
|
|
|
# available, so the toolchain is not needed to build host-go-bootstrap
|
|
|
|
# itself, but needed by other packages that depend on
|
|
|
|
# host-go-bootstrap.
|
|
|
|
HOST_GO_BOOTSTRAP_DEPENDENCIES = toolchain
|
|
|
|
|
2016-04-04 21:31:49 +02:00
|
|
|
HOST_GO_BOOTSTRAP_ROOT = $(HOST_DIR)/usr/lib/go-$(GO_BOOTSTRAP_VERSION)
|
|
|
|
|
|
|
|
HOST_GO_BOOTSTRAP_MAKE_ENV = \
|
|
|
|
GOOS=linux \
|
|
|
|
GOROOT_FINAL="$(HOST_GO_BOOTSTRAP_ROOT)" \
|
|
|
|
GOROOT="$(@D)" \
|
|
|
|
GOBIN="$(@D)/bin"
|
|
|
|
|
|
|
|
define HOST_GO_BOOTSTRAP_BUILD_CMDS
|
|
|
|
cd $(@D)/src && $(HOST_GO_BOOTSTRAP_MAKE_ENV) ./make.bash
|
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_GO_BOOTSTRAP_INSTALL_CMDS
|
|
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/go $(HOST_GO_BOOTSTRAP_ROOT)/bin/go
|
|
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/gofmt $(HOST_GO_BOOTSTRAP_ROOT)/bin/gofmt
|
|
|
|
|
|
|
|
cp -a $(@D)/lib $(HOST_GO_BOOTSTRAP_ROOT)/
|
|
|
|
cp -a $(@D)/pkg $(HOST_GO_BOOTSTRAP_ROOT)/
|
|
|
|
|
|
|
|
# There is a known issue which requires the go sources to be installed
|
|
|
|
# https://golang.org/issue/2775
|
|
|
|
cp -a $(@D)/src $(HOST_GO_BOOTSTRAP_ROOT)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(host-generic-package))
|