public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Andreas Schwab <schwab@linux-m68k.org>
To: Florian Weimer via Libc-alpha <libc-alpha@sourceware.org>
Cc: Florian Weimer <fweimer@redhat.com>
Subject: Re: [PATCH 00/17] nptl: Move remaining mutex symbols into libpthread
Date: Mon, 26 Apr 2021 17:48:08 +0200	[thread overview]
Message-ID: <87bla1yrlz.fsf@igel.home> (raw)
In-Reply-To: <cover.1619105191.git.fweimer@redhat.com> (Florian Weimer via Libc-alpha's message of "Thu, 22 Apr 2021 17:39:33 +0200")

One of the commits 10624a97e8..24f261f27f has broken bison on powerpc
(all flavors).

bison --yacc --name-prefix=__gettext --output /home/abuild/rpmbuild/BUILD/glibc-2.33.9000.438.g7f3e7c262c/cc-base/intl/plural.c plural.y
plural.y:46.1-7: warning: POSIX Yacc does not support %define [-Wyacc]
   46 | %define api.pure full
      | ^~~~~~~
plural.y:47.1-7: warning: POSIX Yacc does not support %expect [-Wyacc]
   47 | %expect 7
      | ^~~~~~~
make[2]: *** [Makefile:46: /home/abuild/rpmbuild/BUILD/glibc-2.33.9000.438.g7f3e7c262c/cc-base/intl/plural.c] Segmentation fault
make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/glibc-2.33.9000.438.g7f3e7c262c/intl'
make[1]: *** [Makefile:479: intl/subdir_lib] Error 2
make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/glibc-2.33.9000.438.g7f3e7c262c'
make: *** [Makefile:9: all] Error 2

24f261f27f nptl: Remove __h_errno_location from libpthread
2b6a4307e9 nptl: Remove __res_state from libpthread
4baf02b332 nptl: Move pthread_spin_trylock into libc
da8e3710d8 nptl: Move pthread_spin_lock into libc
ce4b3b7bef nptl: Move pthread_spin_init, Move pthread_spin_unlock  into libc
c7b1cd4ad1 nptl: Move pthread_spin_destroy into libc
d9b600c985 nptl: Move pthread_condattr_setpshared into libc
6a75fefc2c nptl: Move pthread_condattr_setclock into libc
2a775a9ea5 nptl: Move pthread_condattr_getpshared into libc
ed00dcbbd6 nptl: Move pthread_condattr_getclock into libc
b76c066d09 nptl: Move pthread_mutexattr_settype, __pthread_mutexattr_settype in>
1ec4cd5ab4 nptl: Move pthread_mutexattr_setrobust into libc
0bdd797945 pthread: Use pthread_mutexattr_setrobust in tests
8a229ee93c nptl: Move pthread_mutexattr_setpshared into libc
241ac38c33 nptl: Move pthread_mutexattr_setprotocol into libc
c66772281f nptl: Move pthread_mutexattr_setprioceiling into libc
506385d30e nptl: Move pthread_mutexattr_init, __pthread_mutexattr_init into libc
2a23e899e2 nptl: Move pthread_mutexattr_gettype into libc
9b7ab14e11 nptl: Move pthread_mutexattr_getrobust into libc
2e825f7d5a nptl: Move pthread_mutexattr_getpshared into libc
9f2f158b35 nptl: Move pthread_mutexattr_getprotocol into libc
d236322b6f nptl: Move pthread_mutexattr_getprioceiling into libc
fd42022a10 nptl: Move pthread_mutexattr_destroy into libc
a2b0f2e186 nptl: Move pthread_mutex_trylock, __pthread_mutex_trylock into libc
4372dc7eaa nptl: Move pthread_mutex_timedlock, pthread_mutex_clocklock to libc
a2975191d0 nptl: Move pthread_mutex_setprioceiling into libc
4b85c6f55f nptl: Move pthread_mutex_getprioceiling into libc

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."

  parent reply	other threads:[~2021-04-26 15:48 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22 15:39 Florian Weimer
2021-04-22 15:39 ` [PATCH 01/17] nptl: Move pthread_mutex_getprioceiling into libc Florian Weimer
2021-04-22 15:39 ` [PATCH 02/17] nptl: Move pthread_mutex_setprioceiling " Florian Weimer
2021-04-22 15:39 ` [PATCH 03/17] nptl: Move pthread_mutex_timedlock, pthread_mutex_clocklock to libc Florian Weimer
2021-04-22 15:40 ` [PATCH 04/17] nptl: Move pthread_mutex_trylock, __pthread_mutex_trylock into libc Florian Weimer
2021-04-22 15:40 ` [PATCH 05/17] nptl: Move pthread_mutexattr_destroy " Florian Weimer
2021-04-22 15:40 ` [PATCH 06/17] nptl: Move pthread_mutexattr_getprioceiling " Florian Weimer
2021-04-22 15:40 ` [PATCH 07/17] nptl: Move pthread_mutexattr_getprotocol " Florian Weimer
2021-04-22 15:40 ` [PATCH 08/17] nptl: Move pthread_mutexattr_getpshared " Florian Weimer
2021-04-22 15:40 ` [PATCH 09/17] nptl: Move pthread_mutexattr_getrobust " Florian Weimer
2021-04-22 15:40 ` [PATCH 10/17] nptl: Move pthread_mutexattr_gettype " Florian Weimer
2021-04-26 20:57   ` Andreas Schwab
2021-04-27  4:55     ` Florian Weimer
2021-04-27 11:08     ` Florian Weimer
2021-04-22 15:40 ` [PATCH 11/17] nptl: Move pthread_mutexattr_init, __pthread_mutexattr_init " Florian Weimer
2021-04-22 15:40 ` [PATCH 12/17] nptl: Move pthread_mutexattr_setprioceiling " Florian Weimer
2021-04-22 15:41 ` [PATCH 13/17] nptl: Move pthread_mutexattr_setprotocol " Florian Weimer
2021-04-22 15:41 ` [PATCH 14/17] nptl: Move pthread_mutexattr_setpshared " Florian Weimer
2021-04-22 15:41 ` [PATCH 15/17] pthread: Use pthread_mutexattr_setrobust in tests Florian Weimer
2021-04-22 15:41 ` [PATCH 16/17] nptl: Move pthread_mutexattr_setrobust into libc Florian Weimer
2021-04-22 15:41 ` [PATCH 17/17] nptl: Move pthread_mutexattr_settype, __pthread_mutexattr_settype " Florian Weimer
2021-04-22 21:11 ` [PATCH 00/17] nptl: Move remaining mutex symbols into libpthread H.J. Lu
2021-04-22 21:29   ` Florian Weimer
2021-04-22 21:50     ` H.J. Lu
2021-04-26 15:48 ` Andreas Schwab [this message]
2021-04-26 16:02   ` Florian Weimer
2021-04-26 16:19     ` Andreas Schwab
2021-04-26 16:24       ` Florian Weimer
2021-04-26 16:43         ` Andreas Schwab
2021-04-26 16:50           ` Florian Weimer
2021-04-26 17:51             ` Andreas Schwab
2021-04-26 17:57               ` Florian Weimer
2021-04-26 18:01                 ` Dmitry V. Levin
2021-04-26 18:13                   ` Florian Weimer
2021-04-26 18:19                     ` Andreas Schwab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87bla1yrlz.fsf@igel.home \
    --to=schwab@linux-m68k.org \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).