From 4fb8a9cb2a5410aa565d028bd8deb53d8682da62 Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 6 Jan 2023 05:39:13 +0000 Subject: fix-gnustack: respect CFLAGS, LDFLAGS for tests Needed to correctly run tests with Clang, as Clang doesn't create executable stacks by default. Signed-off-by: Sam James --- misc/fix-gnustack/tests/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/fix-gnustack/tests/Makefile.am b/misc/fix-gnustack/tests/Makefile.am index 9db0fd7..ad573a3 100644 --- a/misc/fix-gnustack/tests/Makefile.am +++ b/misc/fix-gnustack/tests/Makefile.am @@ -5,11 +5,11 @@ noinst_PROGRAMS = bad-gnustack EXTRA_DIST = gnustacktest.sh bad-gnustack.s: bad-gnustack.c - $(CC) -S $< + $(CC) $(CPPFLAGS) $(CFLAGS) -S $< $(SED) -i -e 's/GNU-stack,"",/GNU-stack,"x",/' $@ bad-gnustack$(EXEEXT): bad-gnustack.s - $(CC) -o $@ $< + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< check_SCRIPTS = gnustacktest TEST = $(check_SCRIPTS) -- cgit v1.2.3-65-gdbad