diff options
| author | Loïc Estève <loic.esteve@ymail.com> | 2024-10-07 10:35:21 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-10-11 22:45:01 +0300 |
| commit | 84070410f3fca7781fd1234315e06aae9966bd87 (patch) | |
| tree | b26a9b329fb47207bbe2c956b5681c8a29b94640 | |
| parent | adeb844b40ea338fefdbae0270f8152a2afe9c44 (diff) | |
| download | meson-84070410f3fca7781fd1234315e06aae9966bd87.tar.gz | |
Fix minimal version for Emscripten C23 support
| -rw-r--r-- | mesonbuild/compilers/c.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py index 819ef8bb8..aa85f1191 100644 --- a/mesonbuild/compilers/c.py +++ b/mesonbuild/compilers/c.py @@ -213,7 +213,7 @@ class EmscriptenCCompiler(EmscriptenMixin, ClangCCompiler): _C17_VERSION = '>=1.38.35' _C18_VERSION = '>=1.38.35' _C2X_VERSION = '>=1.38.35' # 1.38.35 used Clang 9.0.0 - _C23_VERSION = '>=3.0.0' # 3.0.0 used Clang 18.0.0 + _C23_VERSION = '>=3.1.45' # 3.1.45 used Clang 18.0.0 def __init__(self, ccache: T.List[str], exelist: T.List[str], version: str, for_machine: MachineChoice, is_cross: bool, info: 'MachineInfo', |
