mirror of
https://github.com/yuzu-emu/build-environments
synced 2024-11-22 10:43:48 +00:00
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:
parent
5c28ea17fb
commit
69bbc177b4
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue