* [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo
@ 2024-02-21 18:14 Fabrice Fontaine
2024-02-24 17:14 ` Peter Korsgaard
2024-03-17 19:39 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-02-21 18:14 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine, Alexander Egorenkov
Set HAVE_CARGO=0 to avoid the following build failures raised since bump
to version 2.29.0 in commit 68df20336664d4d0b1a9d8d0285d23eba631845a and
https://github.com/ibm-s390-linux/s390-tools/commit/e6add997ebbcd967734391da8a8987c7926e168f:
error: could not compile `pvsecret` (bin "pvsecret") due to previous error
[...]
ERROR: architecture for "/usr/bin/pvsecret" is "AArch64", should be "IBM S/390"
Fixes: 68df20336664d4d0b1a9d8d0285d23eba631845a
- http://autobuild.buildroot.org/results/22035cb4d8e251f9930a7d529b91b128919252bb
- http://autobuild.buildroot.org/results/99be6d3b2bab7c952ce02853f54924c5219aecc1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/s390-tools/s390-tools.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/s390-tools/s390-tools.mk b/package/s390-tools/s390-tools.mk
index bc39a9bd19..04d193a467 100644
--- a/package/s390-tools/s390-tools.mk
+++ b/package/s390-tools/s390-tools.mk
@@ -12,7 +12,8 @@ S390_TOOLS_DEPENDENCIES = zlib
S390_TOOLS_MAKE_OPTS = \
ARCH=$(BR2_ARCH) \
- CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE"
+ CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE" \
+ HAVE_CARGO=0
ifeq ($(BR2_PACKAGE_LIBCURL_OPENSSL),y)
S390_TOOLS_DEPENDENCIES += libcurl
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo
2024-02-21 18:14 [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo Fabrice Fontaine
@ 2024-02-24 17:14 ` Peter Korsgaard
2024-03-17 19:39 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-02-24 17:14 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Alexander Egorenkov, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Set HAVE_CARGO=0 to avoid the following build failures raised since bump
> to version 2.29.0 in commit 68df20336664d4d0b1a9d8d0285d23eba631845a and
> https://github.com/ibm-s390-linux/s390-tools/commit/e6add997ebbcd967734391da8a8987c7926e168f:
> error: could not compile `pvsecret` (bin "pvsecret") due to previous error
> [...]
> ERROR: architecture for "/usr/bin/pvsecret" is "AArch64", should be "IBM S/390"
> Fixes: 68df20336664d4d0b1a9d8d0285d23eba631845a
> - http://autobuild.buildroot.org/results/22035cb4d8e251f9930a7d529b91b128919252bb
> - http://autobuild.buildroot.org/results/99be6d3b2bab7c952ce02853f54924c5219aecc1
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo
2024-02-21 18:14 [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo Fabrice Fontaine
2024-02-24 17:14 ` Peter Korsgaard
@ 2024-03-17 19:39 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-03-17 19:39 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Alexander Egorenkov, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Set HAVE_CARGO=0 to avoid the following build failures raised since bump
> to version 2.29.0 in commit 68df20336664d4d0b1a9d8d0285d23eba631845a and
> https://github.com/ibm-s390-linux/s390-tools/commit/e6add997ebbcd967734391da8a8987c7926e168f:
> error: could not compile `pvsecret` (bin "pvsecret") due to previous error
> [...]
> ERROR: architecture for "/usr/bin/pvsecret" is "AArch64", should be "IBM S/390"
> Fixes: 68df20336664d4d0b1a9d8d0285d23eba631845a
> - http://autobuild.buildroot.org/results/22035cb4d8e251f9930a7d529b91b128919252bb
> - http://autobuild.buildroot.org/results/99be6d3b2bab7c952ce02853f54924c5219aecc1
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-17 19:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-21 18:14 [Buildroot] [PATCH 1/1] package/s390-tools: disable cargo Fabrice Fontaine
2024-02-24 17:14 ` Peter Korsgaard
2024-03-17 19:39 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox