From 4be8f4241cf7b9f7146e41f5d072c73726a59796 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Mon, 15 Jan 2024 20:25:19 -0500 Subject: werror patch: add a variant that works on debian-built dists Debian applies their own patches to libtool, so tarballs generated on debian systems need different patches. Signed-off-by: Sam James --- patches/werror/2.4.7-debian | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 patches/werror/2.4.7-debian diff --git a/patches/werror/2.4.7-debian b/patches/werror/2.4.7-debian new file mode 100644 index 0000000..d585724 --- /dev/null +++ b/patches/werror/2.4.7-debian @@ -0,0 +1,34 @@ +https://lists.gnu.org/archive/html/libtool-patches/2022-12/msg00000.html + +From eb8952bf6df858b144f2dc8b573782e25b527c01 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Sat, 10 Dec 2022 02:00:22 +0000 +Subject: [PATCH] Allow -Werror and -Werror=* through flag filtering + +* build-aux/ltmain.in (func_mode_link): allow -Werror and -Werror=* through + flat filtering at link time. + + This is needed for detecting likely-runtime problems with LTO using + e.g. -Werror=odr or -Werror=lto-type-mismatch. + +Bug: https://bugs.gentoo.org/884767 +Signed-off-by: Sam James +[rebased on top of Debian ltmain.sh] +Signed-off-by: Eli Schwartz +--- a/ltmain.sh ++++ b/ltmain.sh +@@ -7564,10 +7564,11 @@ func_mode_link () + # -static-* direct GCC to link specific libraries statically + # -fcilkplus Cilk Plus language extension features for C/C++ + # -Wa,* Pass flags directly to the assembler ++ # -Werror, -Werror=* Report (specified) warnings as errors + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ +- -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus|-Wa,*) ++ -specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus|-Wa,*|-Werror|-Werror=*) + func_quote_arg pretty "$arg" + arg=$func_quote_arg_result + func_append compile_command " $arg" +-- +2.43.0 -- cgit v1.2.3-65-gdbad