Re: glibc regression on alpha with 2.34+

John Paul Adrian Glaubitz <[email protected]> Thu, 15 Dec 2022 11:02:20 +0100
Newsgroups gmane.linux.debian.ports.alpha
Message-ID <[email protected]>
Hi!

On 12/15/22 10:49, Frank Scheiner wrote:
> Maybe adding [1] might help, but the patch actually removes it.

It's missing this hunk:

diff --git a/sysdeps/unix/sysv/linux/sysconf-sigstksz.h b/sysdeps/unix/sysv/linux/sysconf-sigstksz.h
index 64d450b22c..4552e77d59 100644
--- a/sysdeps/unix/sysv/linux/sysconf-sigstksz.h
+++ b/sysdeps/unix/sysv/linux/sysconf-sigstksz.h
@@ -21,7 +21,7 @@
  static long int
  sysconf_sigstksz (void)
  {
-  long int minsigstacksize = GLRO(dl_minsigstacksize);
+  long int minsigstacksize = 4096 ; //GLRO(dl_minsigstacksize);
    assert (minsigstacksize != 0);
    _Static_assert (__builtin_constant_p (MINSIGSTKSZ),
                   "MINSIGSTKSZ is constant");

I was experimenting with a custom sysconf-sigstksz.h like on ia64 which I forgot to purge, sorry.

Adrian