From d6716218bdd6401cb732d27bbbee6bbe0a5b0f36 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Fri, 24 Apr 2020 20:12:02 -0400 Subject: [PATCH] details. --- doc/basics.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/basics.md b/doc/basics.md index 0c26637fb..5dde769f2 100644 --- a/doc/basics.md +++ b/doc/basics.md @@ -22,6 +22,7 @@ Requirements - A recent compiler (LLVM clang6 or better, GNU GCC 7 or better, Visual Studio 2017 or better). We require C++11 support as a minimum. - A 64-bit system (ARM or x64 Intel/AMD). We run tests on macOS, freeBSD, Linux and Windows. We recommend that Visual Studio users target a 64-bit build (x64). + Including simdjson ------------------ @@ -39,6 +40,11 @@ You can compile with: c++ myproject.cpp simdjson.cpp ``` +Note: +- Users on macOS and other platforms were default compilers do not provide C++11 compliant by default should request it with the appropriate flag (e.g., `c++ myproject.cpp simdjson.cpp`). +- Visual Studio users should compile with the `_CRT_SECURE_NO_WARNINGS` flag to avoid warnings with respect to our use of standard C functions such as `fopen`. + + The Basics: Loading and Parsing JSON Documents ----------------------------------------------