mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
Go toolchain changes the installation path when building for the same architecture as the build host. This was already been considered in the GO_BUILD_BINDIR variable but was not being used by the go class. This fixes following error: ,---- | ERROR: go-dep-0.3.0-r0 do_package: QA Issue: go-dep: Files/directories | were installed but not shipped in any package: | /usr/lib/x86_64-oel-linux/go/bin/dep | Please set FILES such that these items are packaged. Alternatively if | they are unneeded, avoid installing them or delete them within | do_install. `---- (From OE-Core rev: 56ce355b3d775e801d2ca89ee812571e794311cd) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
73 lines
2.1 KiB
Plaintext
73 lines
2.1 KiB
Plaintext
inherit goarch
|
|
|
|
GOROOT_class-native = "${STAGING_LIBDIR_NATIVE}/go"
|
|
GOROOT = "${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/go"
|
|
GOBIN_FINAL_class-native = "${GOROOT_FINAL}/bin"
|
|
GOBIN_FINAL = "${GOROOT_FINAL}/${GO_BUILD_BINDIR}"
|
|
|
|
export GOOS = "${TARGET_GOOS}"
|
|
export GOARCH = "${TARGET_GOARCH}"
|
|
export GOARM = "${TARGET_GOARM}"
|
|
export CGO_ENABLED = "1"
|
|
export GOROOT
|
|
export GOROOT_FINAL = "${libdir}/${TARGET_SYS}/go"
|
|
export GOBIN_FINAL
|
|
export GOPKG_FINAL = "${GOROOT_FINAL}/pkg/${GOOS}_${GOARCH}"
|
|
export GOSRC_FINAL = "${GOROOT_FINAL}/src"
|
|
export GO_GCFLAGS = "${TARGET_CFLAGS}"
|
|
export GO_LDFLAGS = "${TARGET_LDFLAGS}"
|
|
export CGO_CFLAGS = "${TARGET_CC_ARCH}${TOOLCHAIN_OPTIONS} ${TARGET_CFLAGS}"
|
|
export CGO_CPPFLAGS = "${TARGET_CPPFLAGS}"
|
|
export CGO_CXXFLAGS = "${TARGET_CC_ARCH}${TOOLCHAIN_OPTIONS} ${TARGET_CXXFLAGS}"
|
|
export CGO_LDFLAGS = "${TARGET_CC_ARCH}${TOOLCHAIN_OPTIONS} ${TARGET_LDFLAGS}"
|
|
|
|
DEPENDS += "go-cross-${TARGET_ARCH}"
|
|
DEPENDS_class-native += "go-native"
|
|
|
|
FILES_${PN}-staticdev += "${GOSRC_FINAL}/${GO_IMPORT}"
|
|
FILES_${PN}-staticdev += "${GOPKG_FINAL}/${GO_IMPORT}*"
|
|
|
|
GO_INSTALL ?= "${GO_IMPORT}/..."
|
|
|
|
do_go_compile() {
|
|
GOPATH=${S}:${STAGING_LIBDIR}/${TARGET_SYS}/go go env
|
|
if [ -n "${GO_INSTALL}" ]; then
|
|
GOPATH=${S}:${STAGING_LIBDIR}/${TARGET_SYS}/go go install -v ${GO_INSTALL}
|
|
fi
|
|
}
|
|
|
|
do_go_install() {
|
|
rm -rf ${WORKDIR}/staging
|
|
install -d ${WORKDIR}/staging${GOROOT_FINAL} ${D}${GOROOT_FINAL}
|
|
tar -C ${S} -cf - . | tar -C ${WORKDIR}/staging${GOROOT_FINAL} -xpvf -
|
|
|
|
find ${WORKDIR}/staging${GOROOT_FINAL} \( \
|
|
-name \*.indirectionsymlink -o \
|
|
-name .git\* -o \
|
|
-name .hg -o \
|
|
-name .svn -o \
|
|
-name .pc\* -o \
|
|
-name patches\* \
|
|
\) -print0 | \
|
|
xargs -r0 rm -rf
|
|
|
|
tar -C ${WORKDIR}/staging${GOROOT_FINAL} -cf - . | \
|
|
tar -C ${D}${GOROOT_FINAL} -xpvf -
|
|
|
|
chown -R root:root "${D}${GOROOT_FINAL}"
|
|
|
|
if [ -e "${D}${GOBIN_FINAL}" ]; then
|
|
install -d -m 0755 "${D}${bindir}"
|
|
find "${D}${GOBIN_FINAL}" ! -type d -print0 | xargs -r0 mv --target-directory="${D}${bindir}"
|
|
rmdir -p "${D}${GOBIN_FINAL}" || true
|
|
fi
|
|
}
|
|
|
|
do_compile() {
|
|
do_go_compile
|
|
}
|
|
|
|
do_install() {
|
|
do_go_install
|
|
}
|