0001-configure.ac-drop-Wl-fatal-warnings.patch 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. From 7d07f683b83ef9fbdf258ce61b022b32f06f253a Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Fri, 16 Feb 2024 17:26:28 +0100
  4. Subject: [PATCH] configure.ac: drop -Wl,--fatal-warnings
  5. Drop -Wl,--fatal-warnings with --enable-static to avoid the following
  6. static build failure:
  7. configure:4778: checking for strtod
  8. configure:4778: /home/autobuild/autobuild/instance-8/output-1/host/bin/powerpc-buildroot-linux-uclibcspe-gcc -o conftest -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -mabi=spe -mfloat-gprs=single -Wa,-me500 -Os -g0 -static -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -static -Wl,--fatal-warnings conftest.c >&5
  9. /home/autobuild/autobuild/instance-8/output-1/host/lib/gcc/powerpc-buildroot-linux-uclibcspe/8.4.0/../../../../powerpc-buildroot-linux-uclibcspe/bin/ld: warning: conftest has a LOAD segment with RWX permissions
  10. collect2: error: ld returned 1 exit status
  11. [...]
  12. In file included from arith_yylex.c:44:
  13. system.h:74:22: error: static declaration of 'strtod' follows non-static declaration
  14. static inline double strtod(const char *nptr, char **endptr)
  15. ^~~~~~
  16. Fixes:
  17. - http://autobuild.buildroot.org/results/a54fdc7d1b94beb47203373ae35b08d9cea8d42c
  18. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  19. Upstream: https://lore.kernel.org/dash/20240216163319.860768-1-fontaine.fabrice@gmail.com
  20. ---
  21. configure.ac | 2 +-
  22. 1 file changed, 1 insertion(+), 1 deletion(-)
  23. diff --git a/configure.ac b/configure.ac
  24. index 5524650..6993364 100644
  25. --- a/configure.ac
  26. +++ b/configure.ac
  27. @@ -34,7 +34,7 @@ fi
  28. AC_ARG_ENABLE(static, AS_HELP_STRING(--enable-static, \
  29. [Build statical linked program]))
  30. if test "$enable_static" = "yes"; then
  31. - export LDFLAGS="-static -Wl,--fatal-warnings"
  32. + export LDFLAGS="-static"
  33. fi
  34. AC_ARG_ENABLE(fnmatch, AS_HELP_STRING(--disable-fnmatch, \
  35. --
  36. 2.43.0