1require go-${PV}.inc 2require go-target.inc 3 4inherit linuxloader 5 6export GOBUILDMODE="" 7export GO_LDSO = "${@get_linuxloader(d)}" 8export CC_FOR_TARGET = "gcc" 9export CXX_FOR_TARGET = "g++" 10 11# mips/rv64 doesn't support -buildmode=pie, so skip the QA checking for mips/riscv32 and its 12# variants. 13python() { 14 if 'mips' in d.getVar('TARGET_ARCH') or 'riscv32' in d.getVar('TARGET_ARCH'): 15 d.appendVar('INSANE_SKIP:%s' % d.getVar('PN'), " textrel") 16} 17 18