public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting
@ 2022-03-06 19:56 unlvsur at live dot com
  2022-03-07  8:57 ` [Bug libstdc++/104807] [12 Regression] " rguenth at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: unlvsur at live dot com @ 2022-03-06 19:56 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104807
           Summary: x86_64-w64-mingw32 target does not have visibility
                    setting
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: unlvsur at live dot com
  Target Milestone: ---

Created attachment 52569
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=52569&action=edit
error message

Recent changes to libstdc++ breaks build for windows targets

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

* [Bug libstdc++/104807] [12 Regression] x86_64-w64-mingw32 target does not have visibility setting
  2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
@ 2022-03-07  8:57 ` rguenth at gcc dot gnu.org
  2022-03-07 11:34 ` redi at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-03-07  8:57 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|x86_64-w64-mingw32 target   |[12 Regression]
                   |does not have visibility    |x86_64-w64-mingw32 target
                   |setting                     |does not have visibility
                   |                            |setting
           Keywords|                            |build
          Component|target                      |libstdc++
   Target Milestone|---                         |12.0

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

* [Bug libstdc++/104807] [12 Regression] x86_64-w64-mingw32 target does not have visibility setting
  2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
  2022-03-07  8:57 ` [Bug libstdc++/104807] [12 Regression] " rguenth at gcc dot gnu.org
@ 2022-03-07 11:34 ` redi at gcc dot gnu.org
  2022-03-07 15:11 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2022-03-07 11:34 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2022-03-07

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

* [Bug libstdc++/104807] [12 Regression] x86_64-w64-mingw32 target does not have visibility setting
  2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
  2022-03-07  8:57 ` [Bug libstdc++/104807] [12 Regression] " rguenth at gcc dot gnu.org
  2022-03-07 11:34 ` redi at gcc dot gnu.org
@ 2022-03-07 15:11 ` cvs-commit at gcc dot gnu.org
  2022-03-07 19:41 ` redi at gcc dot gnu.org
  2022-03-07 22:11 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-03-07 15:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jonathan Wakely <redi@gcc.gnu.org>:

https://gcc.gnu.org/g:4cb935cb69f12088975fa7f6907c6ace0580e2dd

commit r12-7522-g4cb935cb69f12088975fa7f6907c6ace0580e2dd
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Mon Mar 7 15:07:05 2022 +0000

    libstdc++: Use visibility pragmas instead of attributes [PR104807]

    The _GLIBCXX_PSEUDO_VISIBILITY macro isn't defined until after including
    os_defines.h, so we can't use _GLIBCXX_VISIBILITY early in c++config.
    Replace the uses of that macro with #pragma visibility push(default)
    instead.

    libstdc++-v3/ChangeLog:

            PR libstdc++/104807
            * include/bits/c++config (__terminate, __glibcxx_assert_fail):
            Replace _GLIBCXX_VISIBILITY on function with visibility pragma.
            (__is_constant_evaluated): Add visibility pragma.

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

* [Bug libstdc++/104807] [12 Regression] x86_64-w64-mingw32 target does not have visibility setting
  2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
                   ` (2 preceding siblings ...)
  2022-03-07 15:11 ` cvs-commit at gcc dot gnu.org
@ 2022-03-07 19:41 ` redi at gcc dot gnu.org
  2022-03-07 22:11 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2022-03-07 19:41 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> ---
.

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

* [Bug libstdc++/104807] [12 Regression] x86_64-w64-mingw32 target does not have visibility setting
  2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
                   ` (3 preceding siblings ...)
  2022-03-07 19:41 ` redi at gcc dot gnu.org
@ 2022-03-07 22:11 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-03-07 22:11 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mckelvey at maskull dot com

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 104830 has been marked as a duplicate of this bug. ***

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

end of thread, other threads:[~2022-03-07 22:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-06 19:56 [Bug libstdc++/104807] New: x86_64-w64-mingw32 target does not have visibility setting unlvsur at live dot com
2022-03-07  8:57 ` [Bug libstdc++/104807] [12 Regression] " rguenth at gcc dot gnu.org
2022-03-07 11:34 ` redi at gcc dot gnu.org
2022-03-07 15:11 ` cvs-commit at gcc dot gnu.org
2022-03-07 19:41 ` redi at gcc dot gnu.org
2022-03-07 22:11 ` 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).