mirror of git://sourceware.org/git/glibc.git
elf: Add tst-execstack-prog-static
Similar to tst-execstack-prog, check if executable stacks works for statically linked programs. Reviewed-by: Florian Weimer <fweimer@redhat.com>
This commit is contained in:
parent
0ca8785a28
commit
c9540704ac
|
@ -567,6 +567,9 @@ tests-execstack-yes = \
|
|||
tst-execstack-needed \
|
||||
tst-execstack-prog \
|
||||
# tests-execstack-yes
|
||||
tests-execstack-static-yes = \
|
||||
tst-execstack-prog-static
|
||||
# tests-execstack-static-yes
|
||||
endif
|
||||
endif
|
||||
ifeq ($(have-depaudit),yes)
|
||||
|
@ -662,6 +665,7 @@ $(objpfx)tst-rtld-dash-dash.out: tst-rtld-dash-dash.sh $(objpfx)ld.so
|
|||
$(evaluate-test)
|
||||
|
||||
tests += $(tests-execstack-$(have-z-execstack))
|
||||
tests-static+= $(tests-execstack-static-$(have-z-execstack))
|
||||
ifeq ($(run-built-tests),yes)
|
||||
tests-special += \
|
||||
$(objpfx)tst-ldconfig-X.out \
|
||||
|
@ -1982,6 +1986,9 @@ LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack
|
|||
LDFLAGS-tst-execstack-prog = -Wl,-z,execstack
|
||||
CFLAGS-tst-execstack-prog.c += -Wno-trampolines
|
||||
CFLAGS-tst-execstack-mod.c += -Wno-trampolines
|
||||
|
||||
LDFLAGS-tst-execstack-prog-static = -Wl,-z,execstack
|
||||
CFLAGS-tst-execstack-prog-static.c += -Wno-trampolines
|
||||
endif
|
||||
|
||||
LDFLAGS-tst-array2 = -Wl,--no-as-needed
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
#include <tst-execstack-prog.c>
|
Loading…
Reference in New Issue