public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/43852]  New: Embedded systems friendly libstdc++
@ 2010-04-22 14:24 sebastian dot huber at embedded-brains dot de
  2010-04-22 14:25 ` [Bug c++/43852] " sebastian dot huber at embedded-brains dot de
                   ` (11 more replies)
  0 siblings, 12 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-04-22 14:24 UTC (permalink / raw)
  To: gcc-bugs

You can configure the standard C++ library in two ways to reduce the code size
and dependencies on external libraries:

1. --enable-cxx-flags=-fno-exceptions

This does currently not work, due to an error in guard.cc which defines
recursive_init_error::~recursive_init_error() and this results in a dependency
on pure.cc and this one pulls in the IO library.

2. --disable-hosted-libstdcxx

This is also broken currently (try to build it).

Embedded targets may provide a hosted C environment, but in some cases it is
useless to provide output messages.  Also the IO library is quite huge.  Two
files in libstdc++/libsupc++ pull in the IO library: pure.cc and
eh_term_handler.cc (via vterminate.cc).  It would be nice to have a configure
option (like --enable-verbose-cxx) to enable or disable the output generation
in these files.


-- 
           Summary: Embedded systems friendly libstdc++
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: sebastian dot huber at embedded-brains dot de


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


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

* [Bug c++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
@ 2010-04-22 14:25 ` sebastian dot huber at embedded-brains dot de
  2010-04-22 14:51 ` [Bug libstdc++/43852] " redi at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-04-22 14:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from sebastian dot huber at embedded-brains dot de  2010-04-22 14:25 -------
Created an attachment (id=20463)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20463&action=view)
Example how to implement it


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
  2010-04-22 14:25 ` [Bug c++/43852] " sebastian dot huber at embedded-brains dot de
@ 2010-04-22 14:51 ` redi at gcc dot gnu dot org
  2010-04-22 17:03 ` paolo dot carlini at oracle dot com
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu dot org @ 2010-04-22 14:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from redi at gcc dot gnu dot org  2010-04-22 14:51 -------
So this should be three bugs, one for each of the build problems and one
enhancement request for a semi-hosted environment.  I don't think "verbose" is
a good name for the default case, I would prefer something like "quiet" for
your suggested new mode


-- 

redi at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c++                         |libstdc++


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
  2010-04-22 14:25 ` [Bug c++/43852] " sebastian dot huber at embedded-brains dot de
  2010-04-22 14:51 ` [Bug libstdc++/43852] " redi at gcc dot gnu dot org
@ 2010-04-22 17:03 ` paolo dot carlini at oracle dot com
  2010-04-23  9:17 ` sebastian dot huber at embedded-brains dot de
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: paolo dot carlini at oracle dot com @ 2010-04-22 17:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from paolo dot carlini at oracle dot com  2010-04-22 17:02 -------
Good point about splitting to two or three bugs, because the build issues can
probably be fixed in the 4_5-branch too.


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (2 preceding siblings ...)
  2010-04-22 17:03 ` paolo dot carlini at oracle dot com
@ 2010-04-23  9:17 ` sebastian dot huber at embedded-brains dot de
  2010-04-23  9:20 ` sebastian dot huber at embedded-brains dot de
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-04-23  9:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from sebastian dot huber at embedded-brains dot de  2010-04-23 09:16 -------
Bug report for 1. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43863.

Bug report for 2. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43865


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (3 preceding siblings ...)
  2010-04-23  9:17 ` sebastian dot huber at embedded-brains dot de
@ 2010-04-23  9:20 ` sebastian dot huber at embedded-brains dot de
  2010-04-23  9:37 ` redi at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-04-23  9:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from sebastian dot huber at embedded-brains dot de  2010-04-23 09:20 -------
Created an attachment (id=20471)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20471&action=view)
Lets call it quiet.

Configure option may be --enable-quiet-cxx.


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (4 preceding siblings ...)
  2010-04-23  9:20 ` sebastian dot huber at embedded-brains dot de
@ 2010-04-23  9:37 ` redi at gcc dot gnu dot org
  2010-06-24  9:41 ` sebastian dot huber at embedded-brains dot de
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu dot org @ 2010-04-23  9:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from redi at gcc dot gnu dot org  2010-04-23 09:37 -------
thanks for filing the other two bugs

confirmed as an enhancement


-- 

redi at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2010-04-23 09:37:15
               date|                            |


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (5 preceding siblings ...)
  2010-04-23  9:37 ` redi at gcc dot gnu dot org
@ 2010-06-24  9:41 ` sebastian dot huber at embedded-brains dot de
  2010-06-24 10:02 ` paolo dot carlini at oracle dot com
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-06-24  9:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from sebastian dot huber at embedded-brains dot de  2010-06-24 09:41 -------
Created an attachment (id=20993)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20993&action=view)
Implementation, configure and documentation

Is libstdc++-v3/doc/xml/manual/configure.xml the main source for documentation?


-- 

sebastian dot huber at embedded-brains dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #20463|0                           |1
        is obsolete|                            |
  Attachment #20471|0                           |1
        is obsolete|                            |


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (6 preceding siblings ...)
  2010-06-24  9:41 ` sebastian dot huber at embedded-brains dot de
@ 2010-06-24 10:02 ` paolo dot carlini at oracle dot com
  2010-06-24 10:10 ` sebastian dot huber at embedded-brains dot de
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: paolo dot carlini at oracle dot com @ 2010-06-24 10:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from paolo dot carlini at oracle dot com  2010-06-24 10:02 -------
Jon, can you follow this one too?


-- 

paolo dot carlini at oracle dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jwakely dot gcc at gmail dot
                   |                            |com


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (7 preceding siblings ...)
  2010-06-24 10:02 ` paolo dot carlini at oracle dot com
@ 2010-06-24 10:10 ` sebastian dot huber at embedded-brains dot de
  2010-06-24 10:19 ` paolo dot carlini at oracle dot com
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-06-24 10:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from sebastian dot huber at embedded-brains dot de  2010-06-24 10:09 -------
Created an attachment (id=20995)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=20995&action=view)
Implementation, configure and documentation

Sorry, the config.h.in was missing.


-- 

sebastian dot huber at embedded-brains dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #20993|0                           |1
        is obsolete|                            |


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (8 preceding siblings ...)
  2010-06-24 10:10 ` sebastian dot huber at embedded-brains dot de
@ 2010-06-24 10:19 ` paolo dot carlini at oracle dot com
  2010-06-24 12:21 ` redi at gcc dot gnu dot org
  2010-06-24 12:49 ` sebastian dot huber at embedded-brains dot de
  11 siblings, 0 replies; 23+ messages in thread
From: paolo dot carlini at oracle dot com @ 2010-06-24 10:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from paolo dot carlini at oracle dot com  2010-06-24 10:19 -------
In general, regenerated files should not be posted at all, when submitting
patches / changes.


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (9 preceding siblings ...)
  2010-06-24 10:19 ` paolo dot carlini at oracle dot com
@ 2010-06-24 12:21 ` redi at gcc dot gnu dot org
  2010-06-24 12:49 ` sebastian dot huber at embedded-brains dot de
  11 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu dot org @ 2010-06-24 12:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from redi at gcc dot gnu dot org  2010-06-24 12:21 -------
(In reply to comment #7)
> 
> Is libstdc++-v3/doc/xml/manual/configure.xml the main source for documentation?

Yes, however as you don't have a copyright assignment in place, submitting
these patches might actually make it *harder* for us, as we can't use your work
if it's anything substantial.

I'll get this and Bug 44647 done for 4.6.0


-- 

redi at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |redi at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2010-04-23 09:37:15         |2010-06-24 12:21:35
               date|                            |
   Target Milestone|---                         |4.6.0


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
  2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
                   ` (10 preceding siblings ...)
  2010-06-24 12:21 ` redi at gcc dot gnu dot org
@ 2010-06-24 12:49 ` sebastian dot huber at embedded-brains dot de
  11 siblings, 0 replies; 23+ messages in thread
From: sebastian dot huber at embedded-brains dot de @ 2010-06-24 12:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from sebastian dot huber at embedded-brains dot de  2010-06-24 12:49 -------
(In reply to comment #11)
[...]
> I'll get this and Bug 44647 done for 4.6.0

Please have a look at Bug 43863 also.


-- 


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


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2012-09-09 23:09 ` redi at gcc dot gnu.org
@ 2012-09-09 23:10 ` redi at gcc dot gnu.org
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2012-09-09 23:10 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.8.0

--- Comment #21 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-09-09 23:09:53 UTC ---
Done for 4.8.0


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2012-08-27 17:18 ` redi at gcc dot gnu.org
@ 2012-09-09 23:09 ` redi at gcc dot gnu.org
  2012-09-09 23:10 ` redi at gcc dot gnu.org
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2012-09-09 23:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #20 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-09-09 23:08:54 UTC ---
Author: redi
Date: Sun Sep  9 23:08:48 2012
New Revision: 191121

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=191121
Log:
2012-09-10  Sebastian Huber  <sebastian.huber@embedded-brains.de>
        Jonathan Wakely  <jwakely.gcc@gmail.com>

    PR libstdc++/43852
    * acinclude.m4 (GLIBCXX_ENABLE_VERBOSE): Define.
    * configure.ac (GLIBCXX_ENABLE_VERBOSE): Use it.
    * config.h.in: Regenerate.
    * configure: Likewise.
    * libsupc++/eh_term_handler.cc (_GLIBCXX_VERBOSE): Check new macro.
    * libsupc++/pure.cc (_GLIBCXX_VERBOSE): Likewise.
    * doc/xml/manual/configure.xml (--disable-libstdcxx-verbose): Document.
    * doc/html/manual/configure.html: Regenerate.

Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/acinclude.m4
    trunk/libstdc++-v3/config.h.in
    trunk/libstdc++-v3/configure
    trunk/libstdc++-v3/configure.ac
    trunk/libstdc++-v3/doc/html/manual/configure.html
    trunk/libstdc++-v3/doc/xml/manual/configure.xml
    trunk/libstdc++-v3/libsupc++/eh_term_handler.cc
    trunk/libstdc++-v3/libsupc++/pure.cc


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2012-05-31 14:29 ` redi at gcc dot gnu.org
@ 2012-08-27 17:18 ` redi at gcc dot gnu.org
  2012-09-09 23:09 ` redi at gcc dot gnu.org
  2012-09-09 23:10 ` redi at gcc dot gnu.org
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2012-08-27 17:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #19 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-08-27 17:18:34 UTC ---
I finally got time to work on this and have posted an updated patch to
http://gcc.gnu.org/ml/gcc-patches/2012-08/msg01879.html

I went with your original idea of disabling the "verbose" default rather than
enabling a "quiet" alternative. On reflection I thought your name was better as
it's consistent with the verbose terminate handler.

Sorry this took so long to deal with!


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2011-04-28 16:50 ` rguenth at gcc dot gnu.org
@ 2012-05-31 14:29 ` redi at gcc dot gnu.org
  2012-08-27 17:18 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2012-05-31 14:29 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW
         AssignedTo|redi at gcc dot gnu.org     |unassigned at gcc dot
                   |                            |gnu.org

--- Comment #18 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-05-31 13:50:52 UTC ---
Sorry for not finding time to work on this. I'm unassigning myself in case
anyone else wants to do it, as I've got several higher priority items and am
unlikely to work on this any time soon.


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2011-03-25 22:04 ` redi at gcc dot gnu.org
@ 2011-04-28 16:50 ` rguenth at gcc dot gnu.org
  2012-05-31 14:29 ` redi at gcc dot gnu.org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-04-28 16:50 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.0                       |---


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2011-03-25 20:09 ` jakub at gcc dot gnu.org
@ 2011-03-25 22:04 ` redi at gcc dot gnu.org
  2011-04-28 16:50 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-25 22:04 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.1                       |4.7.0

--- Comment #17 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-25 21:14:04 UTC ---
changing target, this didn't happen for 4.6 but I want to do it for 4.7


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2011-01-11 16:54 ` paolo.carlini at oracle dot com
@ 2011-03-25 20:09 ` jakub at gcc dot gnu.org
  2011-03-25 22:04 ` redi at gcc dot gnu.org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 20:09 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.0                       |4.6.1

--- Comment #16 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-25 19:53:16 UTC ---
GCC 4.6.0 is being released, adjusting target milestone.


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
  2011-01-11 16:47 ` paolo.carlini at oracle dot com
  2011-01-11 16:47 ` redi at gcc dot gnu.org
@ 2011-01-11 16:54 ` paolo.carlini at oracle dot com
  2011-03-25 20:09 ` jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: paolo.carlini at oracle dot com @ 2011-01-11 16:54 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #15 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-01-11 16:48:38 UTC ---
Of course no objections, I just couldn't figure out what we were up to.


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
  2011-01-11 16:47 ` paolo.carlini at oracle dot com
@ 2011-01-11 16:47 ` redi at gcc dot gnu.org
  2011-01-11 16:54 ` paolo.carlini at oracle dot com
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: redi at gcc dot gnu.org @ 2011-01-11 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-01-11 16:41:56 UTC ---
If you have no objections I'll resolve PR 43863 for 4.6.0 (by putting
recurisve_init_error in a separate file) but I think this "quiet mode" needs a
bit more thought and time


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

* [Bug libstdc++/43852] Embedded systems friendly libstdc++
       [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
@ 2011-01-11 16:47 ` paolo.carlini at oracle dot com
  2011-01-11 16:47 ` redi at gcc dot gnu.org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 23+ messages in thread
From: paolo.carlini at oracle dot com @ 2011-01-11 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|jwakely.gcc at gmail dot    |
                   |com                         |

--- Comment #13 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-01-11 16:36:29 UTC ---
Jon, are we going to resolve this in time for 4.6.0?


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

end of thread, other threads:[~2012-09-09 23:10 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-22 14:24 [Bug c++/43852] New: Embedded systems friendly libstdc++ sebastian dot huber at embedded-brains dot de
2010-04-22 14:25 ` [Bug c++/43852] " sebastian dot huber at embedded-brains dot de
2010-04-22 14:51 ` [Bug libstdc++/43852] " redi at gcc dot gnu dot org
2010-04-22 17:03 ` paolo dot carlini at oracle dot com
2010-04-23  9:17 ` sebastian dot huber at embedded-brains dot de
2010-04-23  9:20 ` sebastian dot huber at embedded-brains dot de
2010-04-23  9:37 ` redi at gcc dot gnu dot org
2010-06-24  9:41 ` sebastian dot huber at embedded-brains dot de
2010-06-24 10:02 ` paolo dot carlini at oracle dot com
2010-06-24 10:10 ` sebastian dot huber at embedded-brains dot de
2010-06-24 10:19 ` paolo dot carlini at oracle dot com
2010-06-24 12:21 ` redi at gcc dot gnu dot org
2010-06-24 12:49 ` sebastian dot huber at embedded-brains dot de
     [not found] <bug-43852-4@http.gcc.gnu.org/bugzilla/>
2011-01-11 16:47 ` paolo.carlini at oracle dot com
2011-01-11 16:47 ` redi at gcc dot gnu.org
2011-01-11 16:54 ` paolo.carlini at oracle dot com
2011-03-25 20:09 ` jakub at gcc dot gnu.org
2011-03-25 22:04 ` redi at gcc dot gnu.org
2011-04-28 16:50 ` rguenth at gcc dot gnu.org
2012-05-31 14:29 ` redi at gcc dot gnu.org
2012-08-27 17:18 ` redi at gcc dot gnu.org
2012-09-09 23:09 ` redi at gcc dot gnu.org
2012-09-09 23:10 ` redi 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).