Commit 240e4044 by Wenzel Jakob

added note about supported compiler versions

parent 80c2451a
......@@ -75,9 +75,16 @@ In addition to the core functionality, pybind11 provides some extra goodies:
equivalent bindings generated by Boost.Python.
- When supported by the compiler, two new C++14 features (relaxed constexpr and
return value deduction) are used to deduce function signatures at compile
return value deduction) are used to precompute function signatures at compile
time, leading to smaller binaries.
## Supported compilers
1. Clang/LLVM (any non-ancient version with C++11 support)
2. GCC (any non-ancient version with C++11 support)
3. Microsoft Visual Studio 2015 or newer
4. Intel C++ compiler v15 or newer
### License
pybind11 is provided under a BSD-style license that can be found in the
......
......@@ -71,5 +71,13 @@ In addition to the core functionality, pybind11 provides some extra goodies:
equivalent bindings generated by Boost.Python.
- When supported by the compiler, two new C++14 features (relaxed constexpr and
return value deduction) are used to deduce function signatures at compile
return value deduction) are used to precompute function signatures at compile
time, leading to smaller binaries.
Supported compilers
*******************
1. Clang/LLVM (any non-ancient version with C++11 support)
2. GCC (any non-ancient version with C++11 support)
3. Microsoft Visual Studio 2015 or newer
4. Intel C++ compiler v15 or newer
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment