From: Robert Yang Date: Sat, 29 Sep 2018 09:44:46 +0000 (+0800) Subject: go.bbclass: Add -buildmode=pie for non mips arch X-Git-Tag: uninative-2.3~177 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8dcd4e6e791c3a8b8bf5e69dca9bb9c887231d69;p=openembedded-core.git go.bbclass: Add -buildmode=pie for non mips arch Fixed QA issue like: WARNING: runc-docker do_package_qa: QA Issue: ELF binary '/path/to/runc-docker/usr/bin/runc' has relocations in .text [textrel] Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass index d33d83ea7f..167d02e3fa 100644 --- a/meta/classes/go.bbclass +++ b/meta/classes/go.bbclass @@ -179,3 +179,13 @@ FILES_${PN}-staticdev = "${libdir}/go/pkg" INSANE_SKIP_${PN} += "ldflags" INSANE_SKIP_${PN}-ptest += "ldflags" + +# Add -buildmode=pie to GOBUILDFLAGS to satisfy "textrel" QA checking, but mips +# doesn't support -buildmode=pie, so skip the QA checking for mips and its +# variants. +python() { + if 'mips' in d.getVar('TARGET_ARCH'): + d.appendVar('INSANE_SKIP_%s' % d.getVar('PN'), " textrel") + else: + d.appendVar('GOBUILDFLAGS', ' -buildmode=pie') +}