mingw: Update Conan configuration files

Adds support for Clang 14 and GCC 12.1, as well as a couple git versions
just in case.
This commit is contained in:
lat9nq 2022-06-12 14:48:19 -04:00
parent 5c28ea17fb
commit 69bbc177b4
2 changed files with 5 additions and 3 deletions

View file

@ -21,6 +21,6 @@ arch=x86_64
compiler=gcc compiler=gcc
# Adjust to the gcc version of your MinGW package # Adjust to the gcc version of your MinGW package
compiler.version=10.2 compiler.version=12.1
compiler.libcxx=libstdc++11 compiler.libcxx=libstdc++11
build_type=Release build_type=Release

View file

@ -64,7 +64,9 @@ compiler:
"8", "8.1", "8.2", "8.3", "8.4", "8", "8.1", "8.2", "8.3", "8.4",
"9", "9.1", "9.2", "9.3", "9", "9.1", "9.2", "9.3",
"10", "10.1", "10.2", "10.3", "10", "10.1", "10.2", "10.3",
"11", "11.1", "11.2"] "11", "11.1", "11.2",
"12", "12.1",
"13"]
libcxx: [libstdc++, libstdc++11] libcxx: [libstdc++, libstdc++11]
threads: [None, posix, win32] # Windows MinGW threads: [None, posix, win32] # Windows MinGW
exception: [None, dwarf2, sjlj, seh] # Windows MinGW exception: [None, dwarf2, sjlj, seh] # Windows MinGW
@ -87,7 +89,7 @@ compiler:
clang: clang:
version: ["3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "4.0", version: ["3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "4.0",
"5.0", "6.0", "7.0", "7.1", "5.0", "6.0", "7.0", "7.1",
"8", "9", "10", "11", "12", "13"] "8", "9", "10", "11", "12", "13", "14", "15"]
libcxx: [None, libstdc++, libstdc++11, libc++, c++_shared, c++_static] libcxx: [None, libstdc++, libstdc++11, libc++, c++_shared, c++_static]
cppstd: [None, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23] cppstd: [None, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23]
runtime: [None, MD, MT, MTd, MDd] runtime: [None, MD, MT, MTd, MDd]