aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go_1.9.bb
blob: ec5a314e7d68501c963b6d1bae199be628492057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require go-${PV}.inc
require go-target.inc

export GO_TARGET_INSTALL = "cmd"
export GO_FLAGS = "-a"
export CC_FOR_TARGET = "${CC}"
export CXX_FOR_TARGET = "${CXX}"

do_compile() {
	export GOBIN="${B}/bin"
	export TMPDIR="$GOTMPDIR"
	export CC=$BUILD_CC

	cd src
	./make.bash
	cd ${B}
}