* [Buildroot] [PATCH 1/1] package/shadow: disable on uclibc
@ 2024-03-03 18:18 Fabrice Fontaine
2024-03-03 19:15 ` Raphael Pavlidis
2024-03-04 11:46 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-03-03 18:18 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine, Raphael Pavlidis
shadow unconditionally uses reallocarray, reallocf and explicit_bzero
since bump to version 4.14.3 in commit
8a01774d9897310c00a0945865f5a6d5167dfca3 and
https://github.com/shadow-maint/shadow/commit/1aa22c14674e14e84efa171614dea2b515d5a223
https://github.com/shadow-maint/shadow/commit/0e0a310acf5111251589116343897a63ebc88e7a
https://github.com/shadow-maint/shadow/commit/0ec157d579931cfec1cc8439288ed17adf19da5d
resulting in the following uclibc build failure:
/home/autobuild/autobuild/instance-9/output-1/host/lib/gcc/arc-buildroot-linux-uclibc/13.1.1/../../../../arc-buildroot-linux-uclibc/bin/ld: groups.o: in function `main':
groups.c:(.text.startup+0x20): undefined reference to `reallocarray'
Fixes:
- http://autobuild.buildroot.org/results/98be07d299aa383a447a1f1dd2924a00c1a29a34
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/shadow/Config.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/shadow/Config.in b/package/shadow/Config.in
index 230271af7d..bc85d0d135 100644
--- a/package/shadow/Config.in
+++ b/package/shadow/Config.in
@@ -2,6 +2,7 @@ menuconfig BR2_PACKAGE_SHADOW
bool "shadow"
depends on !BR2_STATIC_LIBS
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
+ depends on !BR2_TOOLCHAIN_USES_UCLIBC
help
Utilities to deal with user accounts.
@@ -55,5 +56,6 @@ config BR2_PACKAGE_SHADOW_YESCRYPT
endif # BR2_PACKAGE_SHADOW
-comment "shadow needs a toolchain w/ headers >= 4.14, dynamic library"
- depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 || BR2_STATIC_LIBS
+comment "shadow needs a glibc or musl toolchain w/ headers >= 4.14, dynamic library"
+ depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 || \
+ BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_UCLIBC
--
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/shadow: disable on uclibc
2024-03-03 18:18 [Buildroot] [PATCH 1/1] package/shadow: disable on uclibc Fabrice Fontaine
@ 2024-03-03 19:15 ` Raphael Pavlidis
2024-03-04 11:46 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Raphael Pavlidis @ 2024-03-03 19:15 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
Hi Fabrice,
I would add a comment to the "depends on" line, which lists the functions that are missing in the uclibc toolchain, like reallocarray.
I wanted to fix this build issue next week. Thanks for the patch. :)
Thanks,
Raphael Pavlidis
_______________________________________________
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/shadow: disable on uclibc
2024-03-03 18:18 [Buildroot] [PATCH 1/1] package/shadow: disable on uclibc Fabrice Fontaine
2024-03-03 19:15 ` Raphael Pavlidis
@ 2024-03-04 11:46 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-03-04 11:46 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: Raphael Pavlidis, buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> shadow unconditionally uses reallocarray, reallocf and explicit_bzero
> since bump to version 4.14.3 in commit
> 8a01774d9897310c00a0945865f5a6d5167dfca3 and
> https://github.com/shadow-maint/shadow/commit/1aa22c14674e14e84efa171614dea2b515d5a223
> https://github.com/shadow-maint/shadow/commit/0e0a310acf5111251589116343897a63ebc88e7a
> https://github.com/shadow-maint/shadow/commit/0ec157d579931cfec1cc8439288ed17adf19da5d
> resulting in the following uclibc build failure:
> /home/autobuild/autobuild/instance-9/output-1/host/lib/gcc/arc-buildroot-linux-uclibc/13.1.1/../../../../arc-buildroot-linux-uclibc/bin/ld:
> groups.o: in function `main':
> groups.c:(.text.startup+0x20): undefined reference to `reallocarray'
> Fixes:
> - http://autobuild.buildroot.org/results/98be07d299aa383a447a1f1dd2924a00c1a29a34
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
I got a bit confused about reallocf as musl doesn't provide that, but it
turns out that it is no longer used since:
https://github.com/shadow-maint/shadow/commit/6e58c1275252f3314d1aa5cc4d7e7f9068e3a902
So I dropped the reallocf reference and added a comment about
reallocarray/explicit_bzero as suggested by Raphael and committed,
thanks.
> ---
> package/shadow/Config.in | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
> diff --git a/package/shadow/Config.in b/package/shadow/Config.in
> index 230271af7d..bc85d0d135 100644
> --- a/package/shadow/Config.in
> +++ b/package/shadow/Config.in
> @@ -2,6 +2,7 @@ menuconfig BR2_PACKAGE_SHADOW
> bool "shadow"
> depends on !BR2_STATIC_LIBS
> depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
> + depends on !BR2_TOOLCHAIN_USES_UCLIBC
> help
> Utilities to deal with user accounts.
> @@ -55,5 +56,6 @@ config BR2_PACKAGE_SHADOW_YESCRYPT
> endif # BR2_PACKAGE_SHADOW
> -comment "shadow needs a toolchain w/ headers >= 4.14, dynamic library"
> - depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 || BR2_STATIC_LIBS
> +comment "shadow needs a glibc or musl toolchain w/ headers >= 4.14, dynamic library"
> + depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14 || \
> + BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_UCLIBC
> --
> 2.43.0
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
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-04 11:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-03 18:18 [Buildroot] [PATCH 1/1] package/shadow: disable on uclibc Fabrice Fontaine
2024-03-03 19:15 ` Raphael Pavlidis
2024-03-04 11:46 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox