Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2014-06-26 08:05:46 +0400
committerMilo Yip <miloyip@gmail.com>2014-06-26 08:05:46 +0400
commit26e6fcb9a12fc81d024d541961fbf3a437441d7a (patch)
tree455f756cfa779a935edde5f6f8f8374280d7ff4d /readme.md
parentad266beca1151bf3e0823e7d4e96dd113840f3b2 (diff)
Update readme.md
Add compatibility section and minor changes about JSON.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/readme.md b/readme.md
index b32ce164..1353eb28 100644
--- a/readme.md
+++ b/readme.md
@@ -18,9 +18,20 @@ Rapidjson is a JSON parser and generator for C++. It was inspired by [rapidxml](
For the full features please refer to the user guide.
-JSON(JavaScript Object Notation) is a light-weight data exchange format. More information about JSON can be obtained at
-* http://json.org/
-* http://www.ietf.org/rfc/rfc4627.txt
+JSON(JavaScript Object Notation) is a light-weight data exchange format. Rapidjson should be in fully compliance with RFC4627/ECMA-404. More information about JSON can be obtained at
+* [Introducing JSON](http://json.org/)
+* [RFC4627: The application/json Media Type for JavaScript Object Notation (JSON)](http://www.ietf.org/rfc/rfc4627.txt)
+* [Standard ECMA-404: The JSON Data Interchange Format](http://www.ecma-international.org/publications/standards/Ecma-404.htm)
+
+## Compatibility
+
+Rapidjson is cross-platform. Some platform/compiler combinations which have been tested are shown as follows.
+* Visual C++ 2008/2010/2013 on Windows (32/64-bit)
+* Cygwin GNU C++ 3.8.x on Windows
+* Clang 3.4 on Mac OS X (32/64-bit) and iOS
+* Clang 3.4 on Android NDK
+
+Users can build and run the unit tests on their platform/compiler.
## Installation