summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go_1.18.bb
blob: a492d7e64a1b7671ecae8dd49029d48e4cbfe1ad (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 GO_LDSO = "${@get_linuxloader(d)}"
export CC_FOR_TARGET = "gcc"
export CXX_FOR_TARGET = "g++"

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