[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/4] Make CFLAGS less painful
From: |
Robbie Harwood |
Subject: |
[PATCH v3 2/4] Make CFLAGS less painful |
Date: |
Wed, 5 Jan 2022 17:12:27 -0500 |
From: Peter Jones <pjones@redhat.com>
Signed-off-by: Peter Jones <pjones@redhat.com>
[rharwood@redhat.com: make rpm gunk conditional]
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
---
gnulib-tool | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnulib-tool b/gnulib-tool
index a91847f55a..e4f6486a51 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -3944,18 +3944,23 @@ func_emit_lib_Makefile_am ()
cppflags_part1=
fi
if $for_test; then
- cppflags_part2=" -DGNULIB_STRICT_CHECKING=1"
+ cppflags_part2=" \$(HOST_CPPFLAGS) -DGNULIB_STRICT_CHECKING=1
-D_GLIBCXX_ASSERTIONS "
else
- cppflags_part2=
+ cppflags_part2=" \$(HOST_CPPFLAGS) -D_GLIBCXX_ASSERTIONS "
+ fi
+ rpm_extra_cflags=
+ if test -f "/usr/lib/rpm/redhat/redhat-hardened-cc1" && test -f
"/usr/lib/rpm/redhat/redhat-annobin-cc1"; then
+ rpm_extra_cflags="-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1"
fi
if test -z "$makefile_name"; then
echo
echo "AM_CPPFLAGS =$cppflags_part1$cppflags_part2"
- echo "AM_CFLAGS ="
+ echo "AM_CFLAGS = \$(HOST_CFLAGS) -fexceptions -fstack-protector-strong
-fno-strict-aliasing $rpm_extra_cflags -Wp,-D_GLIBCXX_ASSERTIONS
-Wp,-DGNULIB_STRICT_CHECKING=1 -W -Wall -Wextra -Wno-undef
-Wno-missing-field-initializers -Wno-unused-parameter -Werror -Wno-error=vla
-Wno-error=type-limits -Werror=format-security -Werror=trampolines
-Wno-error=format-nonliteral -Wno-error=cast-align "
else
if test -n "$cppflags_part1$cppflags_part2"; then
echo
echo "AM_CPPFLAGS +=$cppflags_part1$cppflags_part2"
+ echo "AM_CFLAGS = \$(HOST_CFLAGS) -fexceptions -fstack-protector-strong
-fno-strict-aliasing $rpm_extra_cflags -Wp,-D_GLIBCXX_ASSERTIONS
-Wp,-DGNULIB_STRICT_CHECKING=1 -W -Wall -Wextra -Wno-undef
-Wno-missing-field-initializers -Wno-unused-parameter -Werror -Wno-error=vla
-Wno-error=type-limits -Werror=format-security -Werror=trampolines
-Wno-error=format-nonliteral -Wno-error=cast-align "
fi
fi
echo
--
2.34.1