From 5262fed3fddeaa7b919a85237c2d76e9c8116260 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Sat, 29 Sep 2018 15:58:35 +0800 Subject: 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 --- meta/classes/go.bbclass | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'meta') 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') +} -- cgit 1.2.3-korg