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