diff options
| author | Liza Chevalier <lizalc@pm.me> | 2025-12-06 14:59:46 -0600 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-12-08 10:06:08 -0800 |
| commit | f5bccbe9b3f35145ab4b1409fe4279ea931b839d (patch) | |
| tree | 70cf8b73d5f45838981c485a7f692718f248f199 /mesonbuild | |
| parent | 427c887156761f29b4737961bf3801866d2a3512 (diff) | |
| download | meson-f5bccbe9b3f35145ab4b1409fe4279ea931b839d.tar.gz | |
compilers/xc32: add updates for v5.00
Diffstat (limited to 'mesonbuild')
| -rw-r--r-- | mesonbuild/compilers/mixins/microchip.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/compilers/mixins/microchip.py b/mesonbuild/compilers/mixins/microchip.py index d03e82327..b21b032c3 100644 --- a/mesonbuild/compilers/mixins/microchip.py +++ b/mesonbuild/compilers/mixins/microchip.py @@ -124,7 +124,7 @@ class Xc32Compiler(CompilerBase): _COLOR_VERSION = '>=3.0' # XC32 version based on GCC 8.3.1+ _WPEDANTIC_VERSION = '>=1.40' # XC32 version based on GCC 4.8.3+ - _LTO_AUTO_VERSION = '==-1' + _LTO_AUTO_VERSION = '>=5.00' # XC32 version based on GCC 13.2.1+ _LTO_CACHE_VERSION = '==-1' _USE_MOLD_VERSION = '==-1' @@ -184,7 +184,7 @@ class Xc32CStds(GnuCStds): """Mixin for setting C standards based on XC32 version.""" _C18_VERSION = '>=3.0' - _C2X_VERSION = '==-1' + _C2X_VERSION = '>=5.00' _C23_VERSION = '==-1' _C2Y_VERSION = '==-1' @@ -192,5 +192,5 @@ class Xc32CPPStds(GnuCPPStds): """Mixin for setting C++ standards based on XC32 version.""" - _CPP23_VERSION = '==-1' + _CPP23_VERSION = '>=5.00' _CPP26_VERSION = '==-1' |
