From 69bbc177b4d2e78bf19f6335f849813b2fbf5843 Mon Sep 17 00:00:00 2001 From: lat9nq Date: Sun, 12 Jun 2022 14:48:19 -0400 Subject: [PATCH] mingw: Update Conan configuration files Adds support for Clang 14 and GCC 12.1, as well as a couple git versions just in case. --- linux-mingw/default | 2 +- linux-mingw/settings.yml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/linux-mingw/default b/linux-mingw/default index d60d297..1fc3629 100644 --- a/linux-mingw/default +++ b/linux-mingw/default @@ -21,6 +21,6 @@ arch=x86_64 compiler=gcc # Adjust to the gcc version of your MinGW package -compiler.version=10.2 +compiler.version=12.1 compiler.libcxx=libstdc++11 build_type=Release diff --git a/linux-mingw/settings.yml b/linux-mingw/settings.yml index dec4fb8..1c7eac7 100644 --- a/linux-mingw/settings.yml +++ b/linux-mingw/settings.yml @@ -64,7 +64,9 @@ compiler: "8", "8.1", "8.2", "8.3", "8.4", "9", "9.1", "9.2", "9.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] threads: [None, posix, win32] # Windows MinGW exception: [None, dwarf2, sjlj, seh] # Windows MinGW @@ -87,7 +89,7 @@ compiler: clang: 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", - "8", "9", "10", "11", "12", "13"] + "8", "9", "10", "11", "12", "13", "14", "15"] libcxx: [None, libstdc++, libstdc++11, libc++, c++_shared, c++_static] cppstd: [None, 98, gnu98, 11, gnu11, 14, gnu14, 17, gnu17, 20, gnu20, 23, gnu23] runtime: [None, MD, MT, MTd, MDd]