diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-07 23:56:11 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-08 00:02:06 +0300 |
commit | dea91729b6ec00c53d015d7df589f2df3176b7b8 (patch) | |
tree | dd825359e62d4e2f29676627f3dc46281ae563d2 /README.md | |
parent | project.toolset: move _full_exe_name to utils (diff) | |
download | cmake-common-dea91729b6ec00c53d015d7df589f2df3176b7b8.tar.gz cmake-common-dea91729b6ec00c53d015d7df589f2df3176b7b8.zip |
add --help-toolsets parameter
Also, get rid of mentions of Visual Studio versions lower than 2010.
Diffstat (limited to '')
-rw-r--r-- | README.md | 32 |
1 files changed, 17 insertions, 15 deletions
@@ -35,25 +35,27 @@ Toolsets Supported platform/build system/compiler combinations include, but are not limited to: -| Platform | Build system | Compiler -| -------- | ------------ | -------- -| Linux | make | Clang -| | | GCC -| | | MinGW-w64 -| Windows | make \[1\] | Clang (clang/clang++) -| | | Clang (clang-cl \[2\]) -| | | MinGW-w64 -| | msbuild | MSVC -| Cygwin | make | Clang -| | | GCC -| | | MinGW-w64 - -1. Both GNU `make` and MinGW `mingw32-make`. -2. Boost 1.69.0 or higher only. +| Platform | Build system | Compiler | +| -------- | -------------- | ----------- | +| Linux | make | Clang | +| | | GCC | +| | | MinGW-w64 | +| Windows | make \[1\] | Clang \[2\] | +| | | MinGW-w64 | +| | msbuild | MSVC | +| Cygwin | make | Clang | +| | | GCC | +| | | MinGW-w64 | + +1. Both GNU make and MinGW mingw32-make. +2. clang-cl is supported by Boost 1.69.0 or higher only. All of those are verified continuously by the [Boost (toolsets)] and [Examples (toolsets)] workflows. +For a complete list of possible `--toolset` parameter values, pass the +`--help-toolsets` flag to either `boost-build` or `cmake-build`. + [Boost (toolsets)]: https://github.com/egor-tensin/cmake-common/actions/workflows/boost_toolsets.yml [Examples (toolsets)]: https://github.com/egor-tensin/cmake-common/actions/workflows/example_toolsets.yml |