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

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 sa

[Mingw-w64-public] [PATCH] Added libruntimeobject.a and use it instead of api-*.a files.

2015-07-08 Thread Jacek Caban
Those api-ms-win-core-winrt-* files seem to be mingw-w64 invention. MS provides just one common import library with a friendly name. --- mingw-w64-crt/Makefile.am | 3 +- mingw-w64-crt/lib32/Makefile.am| 3 +- .../lib32/api-ms-win-core-winrt-l1-1-0.d

[Mingw-w64-public] [PATCH] Added libamstrmid.a.

2015-07-08 Thread Jacek Caban
--- mingw-w64-crt/Makefile.am | 13 + mingw-w64-crt/libsrc/amstrmid.c | 6 ++ 2 files changed, 19 insertions(+) create mode 100644 mingw-w64-crt/libsrc/amstrmid.c diff --git a/mingw-w64-crt/Makefile.am b/mingw-w64-crt/Makefile.am index f841586..cd1b30f 100644 --- a/mingw-

[Mingw-w64-public] [PATCH] Added magnification.h header file.

2015-07-08 Thread Jacek Caban
--- mingw-w64-headers/include/magnification.h | 37 +++ 1 file changed, 37 insertions(+) create mode 100644 mingw-w64-headers/include/magnification.h diff --git a/mingw-w64-headers/include/magnification.h b/mingw-w64-headers/include/magnification.h new file mode 1006

[Mingw-w64-public] [PATCH] stdio_s.h: Added missing sscanf_s declaration.

2015-07-08 Thread Jacek Caban
--- mingw-w64-headers/crt/sec_api/stdio_s.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mingw-w64-headers/crt/sec_api/stdio_s.h b/mingw-w64-headers/crt/sec_api/stdio_s.h index 8da6ddf..26f43fb 100644 --- a/mingw-w64-headers/crt/sec_api/stdio_s.h +++ b/mingw-w64-headers/crt/sec_api/stdio_s

[Mingw-w64-public] [PATCH] extern C fixes in winstring.h and roapi.h.

2015-07-08 Thread Jacek Caban
--- mingw-w64-headers/include/roapi.h | 5 - mingw-w64-headers/include/winstring.h | 8 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/mingw-w64-headers/include/roapi.h b/mingw-w64-headers/include/roapi.h index 95c4fe6..9cd0f29 100644 --- a/mingw-w64-headers/inclu

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 t

[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--