summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-cross.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/go/go-cross.inc')
-rw-r--r--meta/recipes-devtools/go/go-cross.inc55
1 files changed, 28 insertions, 27 deletions
diff --git a/meta/recipes-devtools/go/go-cross.inc b/meta/recipes-devtools/go/go-cross.inc
index 3ac7211bc3..fe92651581 100644
--- a/meta/recipes-devtools/go/go-cross.inc
+++ b/meta/recipes-devtools/go/go-cross.inc
@@ -1,7 +1,7 @@
1inherit cross 1inherit cross
2 2
3PROVIDES = "virtual/${TARGET_PREFIX}go" 3PROVIDES = "virtual/${TARGET_PREFIX}go"
4DEPENDS += "go-native" 4DEPENDS = "go-native"
5 5
6PN = "go-cross-${TARGET_ARCH}" 6PN = "go-cross-${TARGET_ARCH}"
7 7
@@ -13,26 +13,27 @@ export GOARM = "${TARGET_GOARM}"
13export GO386 = "${TARGET_GO386}" 13export GO386 = "${TARGET_GO386}"
14export GOROOT_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/go" 14export GOROOT_BOOTSTRAP = "${STAGING_LIBDIR_NATIVE}/go"
15export GOROOT_FINAL = "${libdir}/go" 15export GOROOT_FINAL = "${libdir}/go"
16export GOCACHE = "off"
17export GOTMPDIR ?= "${WORKDIR}/go-tmp"
18GOTMPDIR[vardepvalue] = ""
16export CGO_ENABLED = "1" 19export CGO_ENABLED = "1"
17export CC_FOR_TARGET="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
18export CXX_FOR_TARGET="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
19CC = "${@d.getVar('BUILD_CC').strip()}" 20CC = "${@d.getVar('BUILD_CC').strip()}"
20 21
21do_configure[noexec] = "1" 22do_configure[noexec] = "1"
22 23
23do_compile() { 24do_compile() {
24 export GOBIN="${B}/bin" 25 export CC_FOR_${GOOS}_${GOARCH}="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
25 rm -rf ${GOBIN} ${B}/pkg 26 export CXX_FOR_${GOOS}_${GOARCh}="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
26 mkdir ${GOBIN} 27 cd src
27 cd src 28 ./make.bash --host-only --no-banner
28 ./make.bash --host-only 29 cd ${B}
29 cd ${B}
30} 30}
31 31do_compile[dirs] =+ "${GOTMPDIR} ${B}/bin ${B}/pkg"
32do_compile[cleandirs] += "${GOTMPDIR} ${B}/bin ${B}/pkg"
32 33
33make_wrapper() { 34make_wrapper() {
34 rm -f ${D}${bindir}/$2 35 rm -f ${D}${bindir}/$2
35 cat <<END >${D}${bindir}/$2 36 cat <<END >${D}${bindir}/$2
36#!/bin/bash 37#!/bin/bash
37here=\`dirname \$0\` 38here=\`dirname \$0\`
38export GOARCH="${TARGET_GOARCH}" 39export GOARCH="${TARGET_GOARCH}"
@@ -41,22 +42,22 @@ export GOARM="\${GOARM:-${TARGET_GOARM}}"
41export GO386="\${GO386:-${TARGET_GO386}}" 42export GO386="\${GO386:-${TARGET_GO386}}"
42\$here/../../lib/${CROSS_TARGET_SYS_DIR}/go/bin/$1 "\$@" 43\$here/../../lib/${CROSS_TARGET_SYS_DIR}/go/bin/$1 "\$@"
43END 44END
44 chmod +x ${D}${bindir}/$2 45 chmod +x ${D}${bindir}/$2
45} 46}
46 47
47do_install() { 48do_install() {
48 install -d ${D}${libdir}/go 49 install -d ${D}${libdir}/go
49 cp --preserve=mode,timestamps -R ${B}/pkg ${D}${libdir}/go/ 50 cp --preserve=mode,timestamps -R ${B}/pkg ${D}${libdir}/go/
50 install -d ${D}${libdir}/go/src 51 install -d ${D}${libdir}/go/src
51 (cd ${S}/src; for d in *; do \ 52 (cd ${S}/src; for d in *; do \
52 [ ! -d $d ] || cp --preserve=mode,timestamps -R ${S}/src/$d ${D}${libdir}/go/src/; \ 53 [ ! -d $d ] || cp --preserve=mode,timestamps -R ${S}/src/$d ${D}${libdir}/go/src/; \
53 done) 54 done)
54 rm -rf ${D}${libdir}/go/src/runtime/pprof/testdata 55 find ${D}${libdir}/go/src -depth -type d -name testdata -exec rm -rf {} \;
55 install -d ${D}${bindir} ${D}${libdir}/go/bin 56 install -d ${D}${bindir} ${D}${libdir}/go/bin
56 for f in ${B}/bin/* 57 for f in ${B}/bin/*
57 do 58 do
58 base=`basename $f` 59 base=`basename $f`
59 install -m755 $f ${D}${libdir}/go/bin 60 install -m755 $f ${D}${libdir}/go/bin
60 make_wrapper $base ${TARGET_PREFIX}$base 61 make_wrapper $base ${TARGET_PREFIX}$base
61 done 62 done
62} 63}