src: add -Wno-error=stack-usage= to AM_LDFLAGS
authorDmitry V. Levin <ldv@altlinux.org>
Sun, 5 Sep 2021 08:00:00 +0000 (08:00 +0000)
committerDmitry V. Levin <ldv@altlinux.org>
Thu, 9 Sep 2021 08:00:00 +0000 (08:00 +0000)
While -Wstack-usage= is already excluded from AM_CFLAGS for various
tools in src using *_no_Wstack_usage variables, this obviously does not
help when LTO is enabled, so add -Wno-error=stack-usage= to AM_LDFLAGS
for linking tools in src.

References: https://sourceware.org/bugzilla/show_bug.cgi?id=24498
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
config/ChangeLog
config/eu.am
src/ChangeLog
src/Makefile.am

index 70a1e92..b2c0af8 100644 (file)
@@ -1,3 +1,7 @@
+2021-09-05  Dmitry V. Levin  <ldv@altlinux.org>
+
+       * eu.am (STACK_USAGE_NO_ERROR): New variable.
+
 2021-07-06  Alice Zhang  <alizhang@redhat.com>
 
         * debuginfod.sysconfig: Introduce default retry limit.
index 2c3e457..58cd3c4 100644 (file)
@@ -39,8 +39,10 @@ ARFLAGS = cr
 # Warn about stack usage of more than 256K = 262144 bytes.
 if ADD_STACK_USAGE_WARNING
 STACK_USAGE_WARNING=-Wstack-usage=262144
+STACK_USAGE_NO_ERROR=-Wno-error=stack-usage=
 else
 STACK_USAGE_WARNING=
+STACK_USAGE_NO_ERROR=
 endif
 
 if SANE_LOGICAL_OP_WARNING
index b729eaa..e83e0a5 100644 (file)
@@ -1,3 +1,7 @@
+2021-09-05  Dmitry V. Levin  <ldv@altlinux.org>
+
+       * Makefile.am (AM_LDFLAGS): Add $(STACK_USAGE_NO_ERROR).
+
 2021-08-20  Saleem Abdulrasool  <abdulras@google.com>
 
        * elfclassify.c: Remove error.h include.
index 88d0ac8..86d5bcf 100644 (file)
@@ -23,7 +23,7 @@ AM_CPPFLAGS += -I$(srcdir)/../libelf -I$(srcdir)/../libebl \
            -I$(srcdir)/../libdw -I$(srcdir)/../libdwelf \
            -I$(srcdir)/../libdwfl -I$(srcdir)/../libasm
 
-AM_LDFLAGS = -Wl,-rpath-link,../libelf:../libdw
+AM_LDFLAGS = -Wl,-rpath-link,../libelf:../libdw $(STACK_USAGE_NO_ERROR)
 
 bin_PROGRAMS = readelf nm size strip elflint findtextrel addr2line \
               elfcmp objdump ranlib strings ar unstrip stack elfcompress \