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

inherit linuxloader

export GOBUILDMODE=""
export CGO_ENABLED_riscv64 = ""
export GO_LDSO = "${@get_linuxloader(d)}"

# mips/rv64 doesn't support -buildmode=pie, so skip the QA checking for mips/riscv and its
# variants.
python() {
    if 'mips' in d.getVar('TARGET_ARCH',True) or 'riscv' in d.getVar('TARGET_ARCH',True):
        d.appendVar('INSANE_SKIP_%s' % d.getVar('PN',True), " textrel")
}