|
31 | 31 | "name": "clang", |
32 | 32 | "inherits": "multi-config", |
33 | 33 | "displayName": "Clang", |
34 | | - "description": "Recommended configuration for Clang", |
| 34 | + "description": "Recommended configuration for Clang with libc++", |
35 | 35 | "cacheVariables": { |
36 | 36 | "CMAKE_CXX_COMPILER": "clang++", |
37 | 37 | "CMAKE_CXX_EXTENSIONS": false, |
38 | 38 | "CMAKE_CXX_FLAGS": "-stdlib=libc++ -fsized-deallocation -Wall -Wextra -Werror --pedantic -ftemplate-backtrace-limit=0 -Wno-gnu-zero-variadic-macro-arguments" |
39 | 39 | } |
40 | 40 | }, |
| 41 | + { |
| 42 | + "name": "clang-libstdcpp", |
| 43 | + "inherits": "multi-config", |
| 44 | + "displayName": "Clang", |
| 45 | + "description": "Recommended configuration for Clang with libstdcpp", |
| 46 | + "cacheVariables": { |
| 47 | + "CMAKE_CXX_COMPILER": "clang++", |
| 48 | + "CMAKE_CXX_EXTENSIONS": false, |
| 49 | + "CMAKE_CXX_FLAGS": "-stdlib=libstdc++ -fsized-deallocation -Wall -Wextra -Werror --pedantic -ftemplate-backtrace-limit=0 -Wno-gnu-zero-variadic-macro-arguments" |
| 50 | + } |
| 51 | + }, |
41 | 52 | { |
42 | 53 | "name": "clang-analyze", |
43 | 54 | "inherits": "multi-config", |
|
84 | 95 | "configurePreset": "clang", |
85 | 96 | "configuration": "Release" |
86 | 97 | }, |
| 98 | + { |
| 99 | + "name": "clang-libstdcpp-debug", |
| 100 | + "displayName": "Clang libstdc++ Debug Build", |
| 101 | + "configurePreset": "clang-libstdcpp", |
| 102 | + "configuration": "Debug" |
| 103 | + }, |
| 104 | + { |
| 105 | + "name": "clang-libstdcpp-release", |
| 106 | + "displayName": "Clang libstdc++ Release Build", |
| 107 | + "configurePreset": "clang-libstdcpp", |
| 108 | + "configuration": "Release" |
| 109 | + }, |
87 | 110 | { |
88 | 111 | "name": "gcc-debug", |
89 | 112 | "displayName": "G++ Debug Build", |
|
144 | 167 | "configurePreset": "clang", |
145 | 168 | "configuration": "Release" |
146 | 169 | }, |
| 170 | + { |
| 171 | + "name": "test-clang-libstdcpp-debug", |
| 172 | + "inherits": "test-base", |
| 173 | + "displayName": "Test Clang libstdc++ Debug Build", |
| 174 | + "configurePreset": "clang-libstdcpp", |
| 175 | + "configuration": "Debug" |
| 176 | + }, |
| 177 | + { |
| 178 | + "name": "test-clang-libstdcpp-release", |
| 179 | + "inherits": "test-base", |
| 180 | + "displayName": "Test Clang libstdc++ Release Build", |
| 181 | + "configurePreset": "clang-libstdcpp", |
| 182 | + "configuration": "Release" |
| 183 | + }, |
147 | 184 | { |
148 | 185 | "name": "test-gcc-debug", |
149 | 186 | "inherits": "test-base", |
|
0 commit comments