diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2022-05-18 20:03:26 +0200 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2022-05-18 20:10:24 +0200 |
commit | c86b726c048eddc1be320c0bf64a897658bee13d (patch) | |
tree | 921ab388e44b00021d9d26c90ce560acca572bd8 /gcc/c/c-tree.h | |
parent | 4a9be8d51182076222d707d9d68f6eda78e8ee2c (diff) | |
download | gcc-c86b726c048eddc1be320c0bf64a897658bee13d.zip gcc-c86b726c048eddc1be320c0bf64a897658bee13d.tar.gz gcc-c86b726c048eddc1be320c0bf64a897658bee13d.tar.bz2 |
x86: Fix -fsplit-stack feature detection via TARGET_CAN_SPLIT_STACK
Since commit c163647ffbc9a20c8feb6e079dbecccfe016c82e -fsplit-stack
is only supported on glibc targets. However, this original commit
required some fixups. As part of the fixup, the changes to the
gnu-user-common.h and gnu.h were partially reverted in commit
60953a23d57b13a672f751bec0c6eefc059eb1ab thus causing TARGET_CAN_SPLIT_STACK
to be defined for non-glibc targets even though -fsplit-stack is
actually not supported and attempting to use it causes a runtime error.
This causes gcc internal code, such as ./gcc/go/gospec.c to not
correctly detect that -fsplit-stack is not supported and thus causes
gccgo to fail compilation on non-glibc targets.
This commit ensures that TARGET_CAN_SPLIT_STACK is only set if the
default libc is glibc. It is presently unclear to me if there is a
better way to detect glibc at pre-processor time.
The proposed changes have been tested on x86 and x86_64 Alpine Linux
(which uses musl libc) and fix compilation of gccgo for this target.
Signed-off-by: Sören Tempel <soeren@soeren-tempel.net>
gcc/ChangeLog:
* config/i386/gnu-user-common.h (defined): Only define
TARGET_CAN_SPLIT_STACK for glibc targets.
* config/i386/gnu.h (defined): Ditto.
Diffstat (limited to 'gcc/c/c-tree.h')
0 files changed, 0 insertions, 0 deletions