diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2018-06-10 13:57:32 -0400 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2018-06-10 13:57:32 -0400 |
commit | 2b69fecb9d0681a124662dfba89291ad473aa55f (patch) | |
tree | d8477abcb02e4aeb1d4502d024408e4a8398f1a7 /sysdeps | |
parent | 283d98512272a12cb84e7798c23edbdf1adb287d (diff) | |
download | glibc-2b69fecb9d0681a124662dfba89291ad473aa55f.zip glibc-2b69fecb9d0681a124662dfba89291ad473aa55f.tar.gz glibc-2b69fecb9d0681a124662dfba89291ad473aa55f.tar.bz2 |
The hppa-linux target still requires an executable stack for kernel
syscall restarts and signal returns. Thus, we need to xfail the
check-execstack test.
[BZ #23174]
* sysdeps/unix/sysv/linux/hppa/Makefile: xfail check-execstack.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/hppa/Makefile b/sysdeps/unix/sysv/linux/hppa/Makefile index 6856901..e1637f5 100644 --- a/sysdeps/unix/sysv/linux/hppa/Makefile +++ b/sysdeps/unix/sysv/linux/hppa/Makefile @@ -2,3 +2,10 @@ ifeq ($(subdir),stdlib) gen-as-const-headers += ucontext_i.sym endif + +# Supporting non-executable stacks on HPPA requires changes to both +# the Linux kernel and glibc. The kernel currently needs an executable +# stack for syscall restarts and signal returns. +ifeq ($(subdir),elf) +test-xfail-check-execstack = yes +endif |