mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
nerdctl: fix textrel QA issue
Fix the following QA issue: ERROR: QA Issue: nerdctl: ELF binary /usr/bin/nerdctl has relocations in .text [textrel] We want to use -buildmode=pie, in order to avoid duplicating codes with go.bbclass, make use of GOBUILDFLAGS. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
parent
5510a784ff
commit
b65fe24b8c
|
@ -49,6 +49,8 @@ PACKAGECONFIG ?= ""
|
|||
# sets the "sites" variable.
|
||||
include relocation.inc
|
||||
|
||||
PIEFLAG = "${@bb.utils.contains('GOBUILDFLAGS', '-buildmode=pie', '-buildmode=pie', '', d)}"
|
||||
|
||||
do_compile() {
|
||||
|
||||
cd ${S}/src/import
|
||||
|
@ -62,7 +64,7 @@ do_compile() {
|
|||
export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
|
||||
export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
|
||||
|
||||
export GOFLAGS="-mod=vendor -trimpath"
|
||||
export GOFLAGS="-mod=vendor -trimpath ${PIEFLAG}"
|
||||
|
||||
# our copied .go files are to be used for the build
|
||||
ln -sf vendor.copy vendor
|
||||
|
|
Loading…
Reference in New Issue
Block a user