public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/58427] New: xgcc target compilation depends on installed libgcc_s.so
@ 2013-09-15 14:02 rose.garcia-eggl2fk at yopmail dot com
  2013-09-15 14:29 ` [Bug bootstrap/58427] " rose.garcia-eggl2fk at yopmail dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: rose.garcia-eggl2fk at yopmail dot com @ 2013-09-15 14:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58427

            Bug ID: 58427
           Summary: xgcc target compilation depends on installed
                    libgcc_s.so
           Product: gcc
           Version: 4.5.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
          Assignee: unassigned at gcc dot gnu.org
          Reporter: rose.garcia-eggl2fk at yopmail dot com

during target compilation (for example libssp or libstdc++) xgcc is invoked
with the usual specs:

/src/build/gcc454/gcc-4.5.4/host-x86_64-unknown-linux-gnu/gcc/xgcc
-B/src/build/gcc454/gcc-4.5.4/host-x86_64-unknown-linux-gnu/gcc/ ... conftest.c

specs:
%{static|static-libgcc:-lgcc
-lgcc_eh}%{!static:%{!static-libgcc:%{!shared-libgcc:-lgcc --as-needed -lgcc_s
--no-as-needed}%{shared-
libgcc:-lgcc_s%{!shared: -lgcc}}}}

in case binutils ld decides for some reason that libgcc_s is needed, it will
hardcode a reference to libgcc_s into DT_NEEDED.
binutils itself finds the libgcc_s.so in the -B path, and adds it, but
launching the resulting executable will fail because the *dynamic linker* has
no way of knowing that it should look for the .so in
host-x86_64-unknown-linux-gnu/gcc.

this causes the configure check for libssp and libstdc++ to fail with
"C compiler cannot create working executables".

possible solutions:
1) the spec file used by xgcc to compile target libraries should use
libgcc_eh.a instead of libgcc_s.so
2) LD_LIBRARY_PATH has to be set to host-x86_64-unknown-linux-gnu/gcc (the -B
path) so the dynamic linker can find libgcc_s.so

imo, 1) is preferable.


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

* [Bug bootstrap/58427] xgcc target compilation depends on installed libgcc_s.so
  2013-09-15 14:02 [Bug bootstrap/58427] New: xgcc target compilation depends on installed libgcc_s.so rose.garcia-eggl2fk at yopmail dot com
@ 2013-09-15 14:29 ` rose.garcia-eggl2fk at yopmail dot com
  2020-11-06 22:12 ` egallager at gcc dot gnu.org
  2021-07-18 19:42 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: rose.garcia-eggl2fk at yopmail dot com @ 2013-09-15 14:29 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58427

--- Comment #1 from Rose Garcia <rose.garcia-eggl2fk at yopmail dot com> ---
related binutils bugreport:
https://sourceware.org/bugzilla/show_bug.cgi?id=12549#c18


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

* [Bug bootstrap/58427] xgcc target compilation depends on installed libgcc_s.so
  2013-09-15 14:02 [Bug bootstrap/58427] New: xgcc target compilation depends on installed libgcc_s.so rose.garcia-eggl2fk at yopmail dot com
  2013-09-15 14:29 ` [Bug bootstrap/58427] " rose.garcia-eggl2fk at yopmail dot com
@ 2020-11-06 22:12 ` egallager at gcc dot gnu.org
  2021-07-18 19:42 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: egallager at gcc dot gnu.org @ 2020-11-06 22:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58427

Eric Gallager <egallager at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2020-11-06
             Status|UNCONFIRMED                 |WAITING
                 CC|                            |egallager at gcc dot gnu.org

--- Comment #3 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to Eric Gallager from comment #2)
> (In reply to Rose Garcia from comment #1)
> > related binutils bugreport:
> > https://sourceware.org/bugzilla/show_bug.cgi?id=12549#c18
> 
> That binutils issue has been fixed; is there anything left for GCC to do?

WAITING on a reply

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

* [Bug bootstrap/58427] xgcc target compilation depends on installed libgcc_s.so
  2013-09-15 14:02 [Bug bootstrap/58427] New: xgcc target compilation depends on installed libgcc_s.so rose.garcia-eggl2fk at yopmail dot com
  2013-09-15 14:29 ` [Bug bootstrap/58427] " rose.garcia-eggl2fk at yopmail dot com
  2020-11-06 22:12 ` egallager at gcc dot gnu.org
@ 2021-07-18 19:42 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-07-18 19:42 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58427

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |MOVED
             Status|WAITING                     |RESOLVED

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
No feedback in over 6 months assuming the binutils bug was the cause so closing
as moved.

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-15 14:02 [Bug bootstrap/58427] New: xgcc target compilation depends on installed libgcc_s.so rose.garcia-eggl2fk at yopmail dot com
2013-09-15 14:29 ` [Bug bootstrap/58427] " rose.garcia-eggl2fk at yopmail dot com
2020-11-06 22:12 ` egallager at gcc dot gnu.org
2021-07-18 19:42 ` pinskia at gcc dot gnu.org

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