From 740239cef82fdc2e97d38c318aa6ea88cd6ccc08 Mon Sep 17 00:00:00 2001 From: Niels Date: Sat, 30 Jan 2016 21:17:08 +0100 Subject: [PATCH] added a note about GCC 4.8 (#163) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4979a20a..42489417 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,10 @@ Though it's 2016 already, the support for C++11 is still a bit sparse. Currently I would be happy to learn about other compilers/versions. -For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod`) may occur. Note this is not an issue with the code, but rather with the compiler itself. Please refer to [this site](http://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. +Please note: +- GCC 4.8 does not work because of two bugs ([55817](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55817) and [57824](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57824)) in the C++11 support. +- For GCC running on MinGW or Android SDK, the error `'to_string' is not a member of 'std'` (or similarly, for `strtod`) may occur. Note this is not an issue with the code, but rather with the compiler itself. Please refer to [this site](http://tehsausage.com/mingw-to-string) and [this discussion](https://github.com/nlohmann/json/issues/136) for information on how to fix this bug. ## Examples