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

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarryd Beck <jarro.2783@gmail.com>2019-08-23 01:15:28 +0300
committerJarryd Beck <jarro.2783@gmail.com>2019-08-23 01:16:22 +0300
commitf4f4ece8096bbe0be081250d2ae6e2a617c97d5f (patch)
tree9a7aea580920a5e1bd1b0b74fb5ac28bb895729e
parentcb60381e84df99a4829e3d3c657c06380f916d0f (diff)
Improve README about supported compilers
Fixes #202.
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 93dcf3b..2e18a5e 100644
--- a/README.md
+++ b/README.md
@@ -140,8 +140,17 @@ This is a header only library.
# Requirements
-The only build requirement is a C++ compiler that supports C++11 regular
-expressions. For example GCC >= 4.9 or clang with libc++.
+The only build requirement is a C++ compiler that supports C++11 features such as:
+
+* regex
+* constexpr
+* default constructors
+
+GCC >= 4.9 or clang >= 3.1 with libc++ are known to work.
+
+The following compilers are known not to work:
+
+* MSVC 13
# TODO list