public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/50244] New: wcstold not available for C++0x
@ 2011-08-30 23:13 lcid-fire at gmx dot net
  2011-08-30 23:14 ` [Bug c++/50244] " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: lcid-fire at gmx dot net @ 2011-08-30 23:13 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50244
           Summary: wcstold not available for C++0x
    Classification: Unclassified
           Product: gcc
           Version: 4.5.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: lcid-fire@gmx.net


When trying to include <string> and compiling with -std=gnu++0x I get loads of
messages that wcstold is not defined.
When looking at the system headers it seems that wcstol* are only added for
GNU99 mode.


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
@ 2011-08-30 23:14 ` redi at gcc dot gnu.org
  2011-08-30 23:21 ` lcid-fire at gmx dot net
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2011-08-30 23:14 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2011-08-30
     Ever Confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-08-30 23:00:01 UTC ---
Please follow the bug reporting instructions http://gcc.gnu.org/bugs/


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
  2011-08-30 23:14 ` [Bug c++/50244] " redi at gcc dot gnu.org
  2011-08-30 23:21 ` lcid-fire at gmx dot net
@ 2011-08-30 23:21 ` lcid-fire at gmx dot net
  2011-08-30 23:25 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: lcid-fire at gmx dot net @ 2011-08-30 23:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from lcid-fire at gmx dot net 2011-08-30 23:13:07 UTC ---
Created attachment 25141
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25141
Filtered output


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
  2011-08-30 23:14 ` [Bug c++/50244] " redi at gcc dot gnu.org
@ 2011-08-30 23:21 ` lcid-fire at gmx dot net
  2011-08-30 23:21 ` lcid-fire at gmx dot net
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: lcid-fire at gmx dot net @ 2011-08-30 23:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from lcid-fire at gmx dot net 2011-08-30 23:14:01 UTC ---
Created attachment 25142
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=25142
Generated ii file


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
                   ` (2 preceding siblings ...)
  2011-08-30 23:21 ` lcid-fire at gmx dot net
@ 2011-08-30 23:25 ` redi at gcc dot gnu.org
  2011-09-02  6:41 ` lcid-fire at gmx dot net
  2011-09-24 22:59 ` paolo.carlini at oracle dot com
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2011-08-30 23:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-08-30 23:21:29 UTC ---
is that whole file really necessary?

what happens if you just #include <string> ?

What's the simplest command that reproduces the error?


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
                   ` (3 preceding siblings ...)
  2011-08-30 23:25 ` redi at gcc dot gnu.org
@ 2011-09-02  6:41 ` lcid-fire at gmx dot net
  2011-09-24 22:59 ` paolo.carlini at oracle dot com
  5 siblings, 0 replies; 7+ messages in thread
From: lcid-fire at gmx dot net @ 2011-09-02  6:41 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from lcid-fire at gmx dot net 2011-09-02 06:41:29 UTC ---
It seems to be a mixup of gcc 4.4.3 and 4.5.3 include paths. Obviously the
headers are quite different - I'll have to sort it out.


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

* [Bug c++/50244] wcstold not available for C++0x
  2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
                   ` (4 preceding siblings ...)
  2011-09-02  6:41 ` lcid-fire at gmx dot net
@ 2011-09-24 22:59 ` paolo.carlini at oracle dot com
  5 siblings, 0 replies; 7+ messages in thread
From: paolo.carlini at oracle dot com @ 2011-09-24 22:59 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #6 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-09-24 22:46:00 UTC ---
I'm closing this. If you still see something strange on supported targets,
please re-open.


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

end of thread, other threads:[~2011-09-24 22:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-30 23:13 [Bug c++/50244] New: wcstold not available for C++0x lcid-fire at gmx dot net
2011-08-30 23:14 ` [Bug c++/50244] " redi at gcc dot gnu.org
2011-08-30 23:21 ` lcid-fire at gmx dot net
2011-08-30 23:21 ` lcid-fire at gmx dot net
2011-08-30 23:25 ` redi at gcc dot gnu.org
2011-09-02  6:41 ` lcid-fire at gmx dot net
2011-09-24 22:59 ` paolo.carlini at oracle dot com

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