linuxOS_PX30_CAR/yocto/poky/meta/recipes-devtools/go/go_1.16.13.bb
2026-01-20 14:00:13 +08:00

18 lines
472 B
BlitzBasic

require go-${PV}.inc
require go-target.inc
inherit linuxloader
export GOBUILDMODE=""
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")
}