* [meta-virtualization][PATCH] docker-compose: fix textrel QA issue
@ 2023-09-18 6:51 Qi.Chen
2023-09-25 1:17 ` Bruce Ashfield
0 siblings, 1 reply; 3+ messages in thread
From: Qi.Chen @ 2023-09-18 6:51 UTC (permalink / raw)
To: meta-virtualization
From: Chen Qi <Qi.Chen@windriver.com>
Fix textrel QA issue like below:
ERROR: QA Issue: docker-compose: ELF binary /usr/lib/docker/cli-plugins/
docker-compose has relocations in .text [textrel]
The problem could be fixed by adding -buildmode=pie, as this option has
already been in GOBUILDFLAGS except for mips and riscv32, let's make
use of GOBUILDFLAGS.
Also, make use of GO_EXTRA_LDFLAGS to hold our this recipe's specific ldflags.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
recipes-containers/docker-compose/docker-compose_git.bb | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/recipes-containers/docker-compose/docker-compose_git.bb b/recipes-containers/docker-compose/docker-compose_git.bb
index 274fb520..8c0ddccf 100644
--- a/recipes-containers/docker-compose/docker-compose_git.bb
+++ b/recipes-containers/docker-compose/docker-compose_git.bb
@@ -40,6 +40,8 @@ PACKAGECONFIG ?= ""
include relocation.inc
+GOBUILDFLAGS:append = " -mod=vendor"
+GO_EXTRA_LDFLAGS = "-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
do_compile() {
cd ${S}/src/import
@@ -52,17 +54,14 @@ do_compile() {
export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
- export GOFLAGS="-mod=vendor -trimpath"
-
# our copied .go files are to be used for the build
ln -sf vendor.copy vendor
# inform go that we know what we are doing
cp ${WORKDIR}/modules.txt vendor/
- GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
GO_BUILDTAGS=""
mkdir -p ./bin
- ${GO} build $GOFLAGS -tags "$GO_BUILDTAGS" -ldflags "$GO_LDFLAGS" -o ./bin/docker-compose ./cmd
+ ${GO} build ${GOBUILDFLAGS} -tags "$GO_BUILDTAGS" -o ./bin/docker-compose ./cmd
}
do_install() {
--
2.40.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-virtualization][PATCH] docker-compose: fix textrel QA issue
2023-09-18 6:51 [meta-virtualization][PATCH] docker-compose: fix textrel QA issue Qi.Chen
@ 2023-09-25 1:17 ` Bruce Ashfield
2023-09-27 5:54 ` ChenQi
0 siblings, 1 reply; 3+ messages in thread
From: Bruce Ashfield @ 2023-09-25 1:17 UTC (permalink / raw)
To: Qi.Chen; +Cc: meta-virtualization
In message: [meta-virtualization][PATCH] docker-compose: fix textrel QA issue
on 17/09/2023 Chen Qi via lists.yoctoproject.org wrote:
> From: Chen Qi <Qi.Chen@windriver.com>
>
> Fix textrel QA issue like below:
>
> ERROR: QA Issue: docker-compose: ELF binary /usr/lib/docker/cli-plugins/
> docker-compose has relocations in .text [textrel]
>
> The problem could be fixed by adding -buildmode=pie, as this option has
> already been in GOBUILDFLAGS except for mips and riscv32, let's make
> use of GOBUILDFLAGS.
I tend to not use (or like) the defaults in the bbclass, but in this
case, it is probably ok.
>
> Also, make use of GO_EXTRA_LDFLAGS to hold our this recipe's specific ldflags.
I much prefer the explicit GO_LDFLAGS on the build line, versus the
internally consumed GO_EXTRA_LDFLAGS. So I'd prefer to keep that
as-is.
Bruce
>
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> recipes-containers/docker-compose/docker-compose_git.bb | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/recipes-containers/docker-compose/docker-compose_git.bb b/recipes-containers/docker-compose/docker-compose_git.bb
> index 274fb520..8c0ddccf 100644
> --- a/recipes-containers/docker-compose/docker-compose_git.bb
> +++ b/recipes-containers/docker-compose/docker-compose_git.bb
> @@ -40,6 +40,8 @@ PACKAGECONFIG ?= ""
>
> include relocation.inc
>
> +GOBUILDFLAGS:append = " -mod=vendor"
> +GO_EXTRA_LDFLAGS = "-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
> do_compile() {
> cd ${S}/src/import
>
> @@ -52,17 +54,14 @@ do_compile() {
> export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
> export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
>
> - export GOFLAGS="-mod=vendor -trimpath"
> -
> # our copied .go files are to be used for the build
> ln -sf vendor.copy vendor
> # inform go that we know what we are doing
> cp ${WORKDIR}/modules.txt vendor/
>
> - GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
> GO_BUILDTAGS=""
> mkdir -p ./bin
> - ${GO} build $GOFLAGS -tags "$GO_BUILDTAGS" -ldflags "$GO_LDFLAGS" -o ./bin/docker-compose ./cmd
> + ${GO} build ${GOBUILDFLAGS} -tags "$GO_BUILDTAGS" -o ./bin/docker-compose ./cmd
> }
>
> do_install() {
> --
> 2.40.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#8312): https://lists.yoctoproject.org/g/meta-virtualization/message/8312
> Mute This Topic: https://lists.yoctoproject.org/mt/101428849/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-virtualization][PATCH] docker-compose: fix textrel QA issue
2023-09-25 1:17 ` Bruce Ashfield
@ 2023-09-27 5:54 ` ChenQi
0 siblings, 0 replies; 3+ messages in thread
From: ChenQi @ 2023-09-27 5:54 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: meta-virtualization
Got it. I've sent out V2.
Regards,
Qi
On 9/25/23 09:17, Bruce Ashfield wrote:
> In message: [meta-virtualization][PATCH] docker-compose: fix textrel QA issue
> on 17/09/2023 Chen Qi via lists.yoctoproject.org wrote:
>
>> From: Chen Qi <Qi.Chen@windriver.com>
>>
>> Fix textrel QA issue like below:
>>
>> ERROR: QA Issue: docker-compose: ELF binary /usr/lib/docker/cli-plugins/
>> docker-compose has relocations in .text [textrel]
>>
>> The problem could be fixed by adding -buildmode=pie, as this option has
>> already been in GOBUILDFLAGS except for mips and riscv32, let's make
>> use of GOBUILDFLAGS.
> I tend to not use (or like) the defaults in the bbclass, but in this
> case, it is probably ok.
>
>> Also, make use of GO_EXTRA_LDFLAGS to hold our this recipe's specific ldflags.
> I much prefer the explicit GO_LDFLAGS on the build line, versus the
> internally consumed GO_EXTRA_LDFLAGS. So I'd prefer to keep that
> as-is.
>
> Bruce
>
>> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
>> ---
>> recipes-containers/docker-compose/docker-compose_git.bb | 7 +++----
>> 1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/recipes-containers/docker-compose/docker-compose_git.bb b/recipes-containers/docker-compose/docker-compose_git.bb
>> index 274fb520..8c0ddccf 100644
>> --- a/recipes-containers/docker-compose/docker-compose_git.bb
>> +++ b/recipes-containers/docker-compose/docker-compose_git.bb
>> @@ -40,6 +40,8 @@ PACKAGECONFIG ?= ""
>>
>> include relocation.inc
>>
>> +GOBUILDFLAGS:append = " -mod=vendor"
>> +GO_EXTRA_LDFLAGS = "-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
>> do_compile() {
>> cd ${S}/src/import
>>
>> @@ -52,17 +54,14 @@ do_compile() {
>> export CGO_CFLAGS="${CFLAGS} --sysroot=${STAGING_DIR_TARGET}"
>> export CGO_LDFLAGS="${LDFLAGS} --sysroot=${STAGING_DIR_TARGET}"
>>
>> - export GOFLAGS="-mod=vendor -trimpath"
>> -
>> # our copied .go files are to be used for the build
>> ln -sf vendor.copy vendor
>> # inform go that we know what we are doing
>> cp ${WORKDIR}/modules.txt vendor/
>>
>> - GO_LDFLAGS="-s -w -X internal.Version=${PV} -X ${COMPOSE_PKG}/internal.Version=${PV}"
>> GO_BUILDTAGS=""
>> mkdir -p ./bin
>> - ${GO} build $GOFLAGS -tags "$GO_BUILDTAGS" -ldflags "$GO_LDFLAGS" -o ./bin/docker-compose ./cmd
>> + ${GO} build ${GOBUILDFLAGS} -tags "$GO_BUILDTAGS" -o ./bin/docker-compose ./cmd
>> }
>>
>> do_install() {
>> --
>> 2.40.0
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#8312): https://lists.yoctoproject.org/g/meta-virtualization/message/8312
>> Mute This Topic: https://lists.yoctoproject.org/mt/101428849/1050810
>> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
>> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-27 5:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-18 6:51 [meta-virtualization][PATCH] docker-compose: fix textrel QA issue Qi.Chen
2023-09-25 1:17 ` Bruce Ashfield
2023-09-27 5:54 ` ChenQi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.