tools/coreutils: fix compilation on macOS 14
authorRobert Marko <robimarko@gmail.com>
Sat, 27 Apr 2024 11:55:46 +0000 (13:55 +0200)
committerRobert Marko <robimarko@gmail.com>
Sat, 27 Apr 2024 13:14:06 +0000 (15:14 +0200)
commiteede9b1bc4404ae19dc86aeee13ffe5f485115c1
tree0c1f354a0a9f1758e5c137b497596e8d55659e15
parent8d65f0208798625c68b019d417f964b4e609cda1
tools/coreutils: fix compilation on macOS 14

Current coreutils 8.32 in 22.03 will fail to compile when using macOS 14 with:
depbase=`echo lib/obstack.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
gcc  -I. -I./lib  -Ilib -I./lib -Isrc -I./src -I/Volumes/OpenWrt/openwrt/staging_dir/host/include    -O2 -I/Volumes/OpenWrt/openwrt/staging_dir/host/include  -MT lib/obstack.o -MD -MP -MF $depbase.Tpo -c -o lib/obstack.o lib/obstack.c &&\
mv -f $depbase.Tpo $depbase.Po
lib/obstack.c:351:31: error: incompatible function pointer types initializing 'void (*)(void) __attribute__((noreturn))' with an expression of type 'void (void)' [-Wincompatible-function-pointer-types]
__attribute_noreturn__ void (*obstack_alloc_failed_handler) (void)
                              ^
1 error generated.

Backporting gnulib commit ("obstack: Fix a clang warning") fixes this.

Fixes: #15270
Signed-off-by: Robert Marko <robimarko@gmail.com>
tools/coreutils/patches/0001-obstack-Fix-a-clang-warning.patch [new file with mode: 0644]