public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map
@ 2012-11-17 22:21 hjl.tools at gmail dot com
  2012-11-17 22:23 ` [Bug bootstrap/55370] " hjl.tools at gmail dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2012-11-17 22:21 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55370
           Summary: [4.8 Regression] Bad libgcc.map
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com


On Linux/x86-64, I got

/usr/local/bin/ld: warning: wildcard match appears in both version 'GCC_3.0'
and 'GCC_4.8.0' in script

libgcc.map has

GCC_3.0 {
  global:
...
  local:
        *;
};
...
GCC_4.8.0 {
  global:
        __cpu_model;
        __cpu_indicator_init;

  local:
        *;
};


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

* [Bug bootstrap/55370] [4.8 Regression] Bad libgcc.map
  2012-11-17 22:21 [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map hjl.tools at gmail dot com
@ 2012-11-17 22:23 ` hjl.tools at gmail dot com
  2012-11-19  9:31 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2012-11-17 22:23 UTC (permalink / raw)
  To: gcc-bugs


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

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.8.0


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

* [Bug bootstrap/55370] [4.8 Regression] Bad libgcc.map
  2012-11-17 22:21 [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map hjl.tools at gmail dot com
  2012-11-17 22:23 ` [Bug bootstrap/55370] " hjl.tools at gmail dot com
@ 2012-11-19  9:31 ` jakub at gcc dot gnu.org
  2012-11-20  8:36 ` jakub at gcc dot gnu.org
  2012-11-20  8:42 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-11-19  9:31 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2012-11-19
         AssignedTo|unassigned at gcc dot       |jakub at gcc dot gnu.org
                   |gnu.org                     |
     Ever Confirmed|0                           |1

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-11-19 09:31:37 UTC ---
Created attachment 28729
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=28729
gcc48-pr55370.patch

Untested fix.


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

* [Bug bootstrap/55370] [4.8 Regression] Bad libgcc.map
  2012-11-17 22:21 [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map hjl.tools at gmail dot com
  2012-11-17 22:23 ` [Bug bootstrap/55370] " hjl.tools at gmail dot com
  2012-11-19  9:31 ` jakub at gcc dot gnu.org
@ 2012-11-20  8:36 ` jakub at gcc dot gnu.org
  2012-11-20  8:42 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-11-20  8:36 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-11-20 08:36:37 UTC ---
Author: jakub
Date: Tue Nov 20 08:36:31 2012
New Revision: 193648

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=193648
Log:
    PR bootstrap/55370
    * libgcc-std.ver.in: Add GCC_4.8.0 and %inherit for it.

Modified:
    trunk/libgcc/ChangeLog
    trunk/libgcc/libgcc-std.ver.in


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

* [Bug bootstrap/55370] [4.8 Regression] Bad libgcc.map
  2012-11-17 22:21 [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2012-11-20  8:36 ` jakub at gcc dot gnu.org
@ 2012-11-20  8:42 ` jakub at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-11-20  8:42 UTC (permalink / raw)
  To: gcc-bugs


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

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

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

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-11-20 08:41:54 UTC ---
Fixed.


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

end of thread, other threads:[~2012-11-20  8:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-17 22:21 [Bug bootstrap/55370] New: [4.8 Regression] Bad libgcc.map hjl.tools at gmail dot com
2012-11-17 22:23 ` [Bug bootstrap/55370] " hjl.tools at gmail dot com
2012-11-19  9:31 ` jakub at gcc dot gnu.org
2012-11-20  8:36 ` jakub at gcc dot gnu.org
2012-11-20  8:42 ` jakub 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).