blob: d49250a8e2e04595d253cfff8cb100c16fd36788 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001inherit cross-canadian
2
3DEPENDS = "go-native virtual/${HOST_PREFIX}go-crosssdk virtual/nativesdk-${HOST_PREFIX}go-runtime \
Brad Bishop19323692019-04-05 15:28:33 -04004 virtual/${HOST_PREFIX}gcc-crosssdk virtual/nativesdk-libc \
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005 virtual/nativesdk-${HOST_PREFIX}compilerlibs"
6PN = "go-cross-canadian-${TRANSLATED_TARGET_ARCH}"
7
Brad Bishop19323692019-04-05 15:28:33 -04008# it uses gcc on build machine during go-cross-canadian bootstrap, but
9# the gcc version may be old and not support option '-fmacro-prefix-map'
10# which is one of default values of DEBUG_PREFIX_MAP
11DEBUG_PREFIX_MAP = "-fdebug-prefix-map=${WORKDIR}=/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR} \
12 -fdebug-prefix-map=${STAGING_DIR_HOST}= \
13 -fdebug-prefix-map=${STAGING_DIR_NATIVE}= \
14 "
15
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016export GOTOOLDIR_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/${HOST_SYS}/go/pkg/tool/${BUILD_GOTUPLE}"
Brad Bishop316dfdd2018-06-25 12:45:53 -040017export CGO_CFLAGS = "${CFLAGS}"
18export CGO_LDFLAGS = "${LDFLAGS}"
19export GO_LDFLAGS = '-linkmode external -extld ${HOST_PREFIX}gcc -extldflags "--sysroot=${STAGING_DIR_HOST} ${SECURITY_NOPIE_CFLAGS} ${HOST_CC_ARCH} ${LDFLAGS}"'
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020
21do_configure[noexec] = "1"
22
23do_compile() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050024 export CC_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gcc --sysroot=${STAGING_DIR_HOST}${SDKPATHNATIVE} ${SECURITY_NOPIE_CFLAGS}"
25 export CXX_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gxx --sysroot=${STAGING_DIR_HOST}${SDKPATHNATIVE} ${SECURITY_NOPIE_CFLAGS}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026 cd src
27 ./make.bash --host-only --no-banner
28 cd ${B}
29}
Brad Bishop316dfdd2018-06-25 12:45:53 -040030do_compile[dirs] =+ "${GOTMPDIR} ${B}/bin ${B}/pkg"
31do_compile[cleandirs] += "${GOTMPDIR} ${B}/bin ${B}/pkg"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050032
33
34make_wrapper() {
Brad Bishop316dfdd2018-06-25 12:45:53 -040035 rm -f ${D}${bindir}/$2
36 cat <<END >${D}${bindir}/$2
Brad Bishopd7bf8c12018-02-25 22:55:05 -050037#!/bin/sh
38here=\`dirname \$0\`
39native_goroot=\`readlink -f \$here/../../lib/${TARGET_SYS}/go\`
40export GOARCH="${TARGET_GOARCH}"
41export GOOS="${TARGET_GOOS}"
42test -n "\$GOARM" || export GOARM="${TARGET_GOARM}"
43test -n "\$GO386" || export GO386="${TARGET_GO386}"
Brad Bishop316dfdd2018-06-25 12:45:53 -040044test -n "\$GOMIPS" || export GOMIPS="${TARGET_GOMIPS}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050045export GOTOOLDIR="\$native_goroot/pkg/tool/${HOST_GOTUPLE}"
46test -n "\$GOROOT" || export GOROOT="\$OECORE_TARGET_SYSROOT/${target_libdir}/go"
47\$here/../../lib/${TARGET_SYS}/go/bin/$1 "\$@"
48END
Brad Bishop316dfdd2018-06-25 12:45:53 -040049 chmod +x ${D}${bindir}/$2
Brad Bishopd7bf8c12018-02-25 22:55:05 -050050}
51
52do_install() {
53 install -d ${D}${libdir}/go/pkg/tool
54 cp --preserve=mode,timestamps -R ${B}/pkg/tool/${HOST_GOTUPLE} ${D}${libdir}/go/pkg/tool/
55 install -d ${D}${bindir} ${D}${libdir}/go/bin
56 for f in ${B}/${GO_BUILD_BINDIR}/*
57 do
58 base=`basename $f`
59 install -m755 $f ${D}${libdir}/go/bin
60 make_wrapper $base ${TARGET_PREFIX}$base
61 done
62}