public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a
@ 2023-03-22  9:53 songmz1999 at foxmail dot com
  2023-03-22  9:58 ` [Bug libgcc/109245] " jakub at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: songmz1999 at foxmail dot com @ 2023-03-22  9:53 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109245
           Summary: aarch64 gcc defaults to -moutline-atomics but symbol
                    ‘__aarch64_swp4_sync’ is hidden in libgcc.a
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcc
          Assignee: unassigned at gcc dot gnu.org
          Reporter: songmz1999 at foxmail dot com
  Target Milestone: ---

I found an issue when compiling the connection process using the toolchain
aarch64_gcc12.2.0_glibc2.31.0_fp with the error message:

~/aarch64_gcc12.2.0_glibc2.31.0_fp/aarch64-unknown-linux-gnueabi/bin/.ld:
../../../deploy/oms/bin/omsservice: hidden symbol `__aarch64_swp4_sync' in
~/aarch64_gcc12.2.0_glibc2.31.0_fp/bin/../lib/gcc/aarch64-unknown-linux-gnueabi/12.2.0/libgcc.a(swp_4_5.o)
is referenced by DSO

~/aarch64_gcc12.2.0_glibc2.31.0_fp/aarch64-unknown-linux-gnueabi/bin/.ld: final
link failed: bad value


The solution I've found so far is to enable the -mno-outline-atomics parameter
at compile time. But why does gcc have -moutline-atomics enabled by default,
but when calling the function '__aarch64_swp4_sync', it is hidden in libgcc.a?
Is there a better solution?

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

* [Bug libgcc/109245] aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a
  2023-03-22  9:53 [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a songmz1999 at foxmail dot com
@ 2023-03-22  9:58 ` jakub at gcc dot gnu.org
  2023-03-22 10:25 ` pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2023-03-22  9:58 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
That means one or more of your shared libraries has been linked incorrectly,
e.g. by using ld -shared by hand instead of gcc -shared, or with -nostdlib or
something similar.

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

* [Bug libgcc/109245] aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a
  2023-03-22  9:53 [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a songmz1999 at foxmail dot com
  2023-03-22  9:58 ` [Bug libgcc/109245] " jakub at gcc dot gnu.org
@ 2023-03-22 10:25 ` pinskia at gcc dot gnu.org
  2023-03-22 16:13 ` pinskia at gcc dot gnu.org
  2024-02-21  0:42 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-03-22 10:25 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2023-03-22
             Status|UNCONFIRMED                 |WAITING
     Ever confirmed|0                           |1

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

* [Bug libgcc/109245] aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a
  2023-03-22  9:53 [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a songmz1999 at foxmail dot com
  2023-03-22  9:58 ` [Bug libgcc/109245] " jakub at gcc dot gnu.org
  2023-03-22 10:25 ` pinskia at gcc dot gnu.org
@ 2023-03-22 16:13 ` pinskia at gcc dot gnu.org
  2024-02-21  0:42 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-03-22 16:13 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Can you show how you are doing the link? If you are linking in shared
libraries, show how you are linking those too?

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

* [Bug libgcc/109245] aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a
  2023-03-22  9:53 [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a songmz1999 at foxmail dot com
                   ` (2 preceding siblings ...)
  2023-03-22 16:13 ` pinskia at gcc dot gnu.org
@ 2024-02-21  0:42 ` pinskia at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-02-21  0:42 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
No feedback in almost 11 months on the command line which is failing and about
how the shared libraries were linked so closing as invalid.

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

end of thread, other threads:[~2024-02-21  0:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-22  9:53 [Bug libgcc/109245] New: aarch64 gcc defaults to -moutline-atomics but symbol ‘__aarch64_swp4_sync’ is hidden in libgcc.a songmz1999 at foxmail dot com
2023-03-22  9:58 ` [Bug libgcc/109245] " jakub at gcc dot gnu.org
2023-03-22 10:25 ` pinskia at gcc dot gnu.org
2023-03-22 16:13 ` pinskia at gcc dot gnu.org
2024-02-21  0: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).