Re: [Mingw-w64-public] C++14

2015-07-08 Thread papa
Yes, Riot, that was exactly what I was looking for. An example always goes a 
long, long way. Thanks so much.
Ruben, thanks s much for the links. Those links answer all the questions 
I had about GCC support for c++11/14. Thanks man!

-Original Message- 
From: Riot
Sent: Wednesday, July 8, 2015 12:04 PM
To: mingw-w64-public@lists.sourceforge.net
Subject: Re: [Mingw-w64-public] C++14

I can confirm that __attribute__((deprecated("reason"))) definitely
works on mingw-w64 with -std=gnu++1y, and probably with some others.


On 8 July 2015 at 15:06, Ruben Van Boxem  wrote:
> Here you can find GCC's C++11 implementation status:
> https://gcc.gnu.org/projects/cxx0x.html
>
> And the same for C++14:
> https://gcc.gnu.org/projects/cxx1y.html
>
> Here you can find libstdc++ implementation status:
> https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html
>
> Make sure you are invoking the compiler with the appropriate "-std" option
> (e.g. -std=c++14), see
> https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/C-Dialect-Options.html#C-Dialect-Options
>
> Cheers,
>
> Ruben
>
> 2015-07-08 15:28 GMT+02:00 :
>>
>> C++14 includes the [[deprecated("reason")]] attribute, but in my MinGW-64
>> with GCC-5.1 it creates a warning saying:
>> warning: 'deprecated' attribute directive ignored [-Wattributes]|
>>
>> How can I find out which features of C++11 and C++14 are available in
>> g++5.1?
>>
>> Thanks
>>
>>
>> --
>> Don't Limit Your Business. Reach for the Cloud.
>> GigeNET's Cloud Solutions provide you with the tools and support that
>> you need to offload your IT needs and focus on growing your business.
>> Configured For All Businesses. Start Your Cloud Today.
>> https://www.gigenetcloud.com/
>> ___
>> Mingw-w64-public mailing list
>> Mingw-w64-public@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>>
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Mingw-w64-public mailing list
> Mingw-w64-public@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public 


--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


Re: [Mingw-w64-public] C++14

2015-07-08 Thread Riot
I can confirm that __attribute__((deprecated("reason"))) definitely
works on mingw-w64 with -std=gnu++1y, and probably with some others.


On 8 July 2015 at 15:06, Ruben Van Boxem  wrote:
> Here you can find GCC's C++11 implementation status:
> https://gcc.gnu.org/projects/cxx0x.html
>
> And the same for C++14:
> https://gcc.gnu.org/projects/cxx1y.html
>
> Here you can find libstdc++ implementation status:
> https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html
>
> Make sure you are invoking the compiler with the appropriate "-std" option
> (e.g. -std=c++14), see
> https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/C-Dialect-Options.html#C-Dialect-Options
>
> Cheers,
>
> Ruben
>
> 2015-07-08 15:28 GMT+02:00 :
>>
>> C++14 includes the [[deprecated("reason")]] attribute, but in my MinGW-64
>> with GCC-5.1 it creates a warning saying:
>> warning: 'deprecated' attribute directive ignored [-Wattributes]|
>>
>> How can I find out which features of C++11 and C++14 are available in
>> g++5.1?
>>
>> Thanks
>>
>>
>> --
>> Don't Limit Your Business. Reach for the Cloud.
>> GigeNET's Cloud Solutions provide you with the tools and support that
>> you need to offload your IT needs and focus on growing your business.
>> Configured For All Businesses. Start Your Cloud Today.
>> https://www.gigenetcloud.com/
>> ___
>> Mingw-w64-public mailing list
>> Mingw-w64-public@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>>
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Mingw-w64-public mailing list
> Mingw-w64-public@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>

--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


Re: [Mingw-w64-public] C++14

2015-07-08 Thread Ruben Van Boxem
Here you can find GCC's C++11 implementation status:
https://gcc.gnu.org/projects/cxx0x.html

And the same for C++14:
https://gcc.gnu.org/projects/cxx1y.html

Here you can find libstdc++ implementation status:
https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html

Make sure you are invoking the compiler with the appropriate "-std" option
(e.g. -std=c++14), see
https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/C-Dialect-Options.html#C-Dialect-Options

Cheers,

Ruben

2015-07-08 15:28 GMT+02:00 :

>   C++14 includes the [[deprecated("reason")]] attribute, but in my
> MinGW-64 with GCC-5.1 it creates a warning saying:
> warning: 'deprecated' attribute directive ignored [-Wattributes]|
>
> How can I find out which features of C++11 and C++14 are available in
> g++5.1?
>
> Thanks
>
>
> --
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> ___
> Mingw-w64-public mailing list
> Mingw-w64-public@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
>
>
--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public


[Mingw-w64-public] C++14

2015-07-08 Thread papa
C++14 includes the [[deprecated("reason")]] attribute, but in my MinGW-64 with 
GCC-5.1 it creates a warning saying:
warning: 'deprecated' attribute directive ignored [-Wattributes]|

How can I find out which features of C++11 and C++14 are available in g++5.1?

Thanks--
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public