public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] configure: define TARGET_LIBC_GNUSTACK on musl
@ 2021-11-15  8:25 Ilya Lipnitskiy
  2021-11-15 22:50 ` Jeff Law
  0 siblings, 1 reply; 11+ messages in thread
From: Ilya Lipnitskiy @ 2021-11-15  8:25 UTC (permalink / raw)
  To: gcc-patches, Dragan Mladjenovic; +Cc: Ilya Lipnitskiy

musl only uses PT_GNU_STACK to set default thread stack size and has no
executable stack support[0], so there is no reason not to emit the
.note.GNU-stack section on musl builds.

[0]: https://lore.kernel.org/all/20190423192534.GN23599@brightrain.aerifal.cx/T/#u

gcc/ChangeLog:

	* configure: Regenerate.
	* configure.ac: define TARGET_LIBC_GNUSTACK on musl

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
---
 gcc/configure    | 3 +++
 gcc/configure.ac | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/gcc/configure b/gcc/configure
index 920868bcd33d..366d6d969f45 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -31263,6 +31263,9 @@ if test $glibc_version_major -gt 2 \
   gcc_cv_libc_gnustack=yes
 fi
     ;;
+  mips*-*-linux-musl*)
+    gcc_cv_libc_gnustack=yes
+    ;;
 esac
 if test x$gcc_cv_libc_gnustack = xyes; then
 
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 065080a4b399..56d5bb7785a8 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -6950,6 +6950,9 @@ case "$target" in
   mips*-*-linux*)
     GCC_GLIBC_VERSION_GTE_IFELSE([2], [31], [gcc_cv_libc_gnustack=yes], )
     ;;
+  mips*-*-linux-musl*)
+    gcc_cv_libc_gnustack=yes
+    ;;
 esac
 if test x$gcc_cv_libc_gnustack = xyes; then
   AC_DEFINE(TARGET_LIBC_GNUSTACK, 1,
-- 
2.33.1


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-12-02 21:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15  8:25 [PATCH] configure: define TARGET_LIBC_GNUSTACK on musl Ilya Lipnitskiy
2021-11-15 22:50 ` Jeff Law
2021-11-16  5:10   ` Ilya Lipnitskiy
2021-11-16  5:13     ` [PATCH v2] " Ilya Lipnitskiy
2021-11-16 14:40       ` Dragan Mladjenovic
2021-11-16 16:25         ` [musl] " Rich Felker
2021-11-16 17:49           ` Ilya Lipnitskiy
2021-12-02 20:48       ` Jeff Law
2021-12-02 20:59         ` Ilya Lipnitskiy
2021-12-02 21:12           ` Jeff Law
2021-11-23  0:30     ` [PATCH] " Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).