This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GCC support for C++ noexcept


On 27 July 2015 at 02:10, Jeffrey Walton wrote:
> GCC does not appear to define __cplusplus under MinGW, so I can't
> perform the test __cpluplus >= 201103L.

It defines it unconditionally on all platforms.

> $ g++ -dM -E - < /dev/null | grep cplusplus
> $
>
> $ g++ -std=c++11 -dM -E - < /dev/null | grep cplusplus
> cc1.exe: warning: command line option '-std=c++11' is valid for
> C++/ObjC++ but not for C [enabled by default]=

This tells you you are running the C compiler not the C++ compiler.

When reading from stdin g++ doesn't set the default language to C++ (I
keep meaning to file an enhancement request in Bugzilla about this).

> How do I test for the noexcept feature?

Compile as C++ not C, using -x c++


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]