public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* realpath() function not declared in scope when "-std=c++11" option added to g++
@ 2016-03-02  6:58 MyBig SpamEmail
  2016-03-02  8:55 ` Csaba Raduly
  0 siblings, 1 reply; 2+ messages in thread
From: MyBig SpamEmail @ 2016-03-02  6:58 UTC (permalink / raw)
  To: cygwin

Compiling the following code in test.cpp:

#include <limits.h>
#include <stdlib.h>

int main ( void )
{
        realpath ( "//.", NULL );
        return 0;
}

This works:
% g++ test.cpp

This doesn't:
% g++ -std=c++11 test.cpp
test.cpp: In function ‘int main()’:
test.cpp:8:25: error: ‘realpath’ was not declared in this scope
  realpath ( "//.", NULL );
                         ^

Is this expected behavior?

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: realpath() function not declared in scope when "-std=c++11" option added to g++
  2016-03-02  6:58 realpath() function not declared in scope when "-std=c++11" option added to g++ MyBig SpamEmail
@ 2016-03-02  8:55 ` Csaba Raduly
  0 siblings, 0 replies; 2+ messages in thread
From: Csaba Raduly @ 2016-03-02  8:55 UTC (permalink / raw)
  To: cygwin list

Hi MyBig,

On Wed, Mar 2, 2016 at 7:58 AM, MyBig SpamEmail  wrote:
>
> Compiling the following code in test.cpp:
>
> #include <limits.h>
> #include <stdlib.h>
>
> int main ( void )
> {
>         realpath ( "//.", NULL );
>         return 0;
> }
>
> This works:
> % g++ test.cpp
>
> This doesn't:
> % g++ -std=c++11 test.cpp
> test.cpp: In function ‘int main()’:
> test.cpp:8:25: error: ‘realpath’ was not declared in this scope
>   realpath ( "//.", NULL );
>                          ^

I don't have a Cygwin machine at hand, but try compiling with
-std=gnu++11 instead of -std=c++11. realpath() might be hidden if
__STRICT_ANSI__ is defined (when you use -std=c++11, IIRC).

Csaba
-- 
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
The Tao of math: The numbers you can count are not the real numbers.
Life is complex, with real and imaginary parts.
"Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds
"People disagree with me. I just ignore them." -- Linus Torvalds

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

end of thread, other threads:[~2016-03-02  8:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-02  6:58 realpath() function not declared in scope when "-std=c++11" option added to g++ MyBig SpamEmail
2016-03-02  8:55 ` Csaba Raduly

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