public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
@ 2021-08-02 21:15 i at maskray dot me
  2021-08-02 21:17 ` [Bug build/28177] " i at maskray dot me
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: i at maskray dot me @ 2021-08-02 21:15 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

            Bug ID: 28177
           Summary: make check has ~150 failures due to `libgcc_s.so.1
                    must be installed for pthread_cancel to work`
           Product: glibc
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: build
          Assignee: unassigned at sourceware dot org
          Reporter: i at maskray dot me
                CC: carlos at redhat dot com
  Target Milestone: ---

(Debian testing amd64, GCC 10.2.1, binutils 2.35.2)

% mkdir -p out/bfd
% ../../configure --prefix=/tmp/glibc/bfd --enable-static-pie
% make -j 20
% make -j 20 check
# many failures due to libgcc_s.so.1 must be installed for pthread_cancel to
work
% ./testrun.sh nptl/tst-cancel1
libgcc_s.so.1 must be installed for pthread_cancel to work
Didn't expect signal from child: got `Aborted'

Copying the system libgcc_s.so.1 to $prefix/lib/ can fix the failures.

% cp /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 /tmp/glibc/bfd/lib/
% ./testrun.sh nptl/tst-cancel1
# succeeded

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28177] make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
  2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
@ 2021-08-02 21:17 ` i at maskray dot me
  2021-08-03 12:58 ` fweimer at redhat dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: i at maskray dot me @ 2021-08-02 21:17 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

--- Comment #1 from Fangrui Song <i at maskray dot me> ---
Forgot `cd out/bfd` below `mkdir -p out/bfd`

`make install` before `make check` doesn't work. In ./testrun.sh, 
/usr/lib/x86_64-linux-gnu/libgcc_s.so.1 is not in `search path`
(LD_DEBUG=libs). So a manual copy is needed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28177] make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
  2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
  2021-08-02 21:17 ` [Bug build/28177] " i at maskray dot me
@ 2021-08-03 12:58 ` fweimer at redhat dot com
  2021-08-03 18:51 ` [Bug build/28177] Debian/Ubuntu: make check has 100+ " i at maskray dot me
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: fweimer at redhat dot com @ 2021-08-03 12:58 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WORKSFORME
                 CC|                            |fweimer at redhat dot com

--- Comment #2 from Florian Weimer <fweimer at redhat dot com> ---
Please talk to Debian or Ubuntu about upstreaming their multiarch patches. The
upstream toolchain is consistent in this area. The issue only happens if you
try to do glibc development on a system that has these custom downstream
patches in its system toolchain.

(Just to be clear, I would like to see these patches upstreamed, it's just not
something I'm sure I can do due to the licensing aspects involved.)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28177] Debian/Ubuntu: make check has 100+ failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
  2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
  2021-08-02 21:17 ` [Bug build/28177] " i at maskray dot me
  2021-08-03 12:58 ` fweimer at redhat dot com
@ 2021-08-03 18:51 ` i at maskray dot me
  2021-08-03 19:41 ` i at maskray dot me
  2021-08-03 19:42 ` fweimer at redhat dot com
  4 siblings, 0 replies; 6+ messages in thread
From: i at maskray dot me @ 2021-08-03 18:51 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

Fangrui Song <i at maskray dot me> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|make check has ~150         |Debian/Ubuntu: make check
                   |failures due to             |has 100+ failures due to
                   |`libgcc_s.so.1 must be      |`libgcc_s.so.1 must be
                   |installed for               |installed for
                   |pthread_cancel to work`     |pthread_cancel to work`

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28177] Debian/Ubuntu: make check has 100+ failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
  2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
                   ` (2 preceding siblings ...)
  2021-08-03 18:51 ` [Bug build/28177] Debian/Ubuntu: make check has 100+ " i at maskray dot me
@ 2021-08-03 19:41 ` i at maskray dot me
  2021-08-03 19:42 ` fweimer at redhat dot com
  4 siblings, 0 replies; 6+ messages in thread
From: i at maskray dot me @ 2021-08-03 19:41 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

--- Comment #3 from Fangrui Song <i at maskray dot me> ---
Reported a Debian bug on
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=991861

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

* [Bug build/28177] Debian/Ubuntu: make check has 100+ failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work`
  2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
                   ` (3 preceding siblings ...)
  2021-08-03 19:41 ` i at maskray dot me
@ 2021-08-03 19:42 ` fweimer at redhat dot com
  4 siblings, 0 replies; 6+ messages in thread
From: fweimer at redhat dot com @ 2021-08-03 19:42 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=28177

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           See Also|                            |http://bugs.debian.org/9918
                   |                            |61

-- 
You are receiving this mail because:
You are on the CC list for the bug.

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

end of thread, other threads:[~2021-08-03 19:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02 21:15 [Bug build/28177] New: make check has ~150 failures due to `libgcc_s.so.1 must be installed for pthread_cancel to work` i at maskray dot me
2021-08-02 21:17 ` [Bug build/28177] " i at maskray dot me
2021-08-03 12:58 ` fweimer at redhat dot com
2021-08-03 18:51 ` [Bug build/28177] Debian/Ubuntu: make check has 100+ " i at maskray dot me
2021-08-03 19:41 ` i at maskray dot me
2021-08-03 19:42 ` fweimer at redhat dot com

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).