aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/c.py
AgeCommit message (Expand)AuthorFilesLines
2024-07-17Remove language (AKA compiler) type from OptionKey.Jussi Pakkanen1-1/+1
2024-07-12Rename langopt methodJussi Pakkanen1-33/+33
2024-06-26compilers: Add support for OpenMP from homebrew with AppleClangDylan Baker1-1/+2
2024-06-14Fix mypy.Jussi Pakkanen1-0/+3
2024-06-14Replace direct indexing with named methods.Jussi Pakkanen1-42/+42
2024-06-08Create helper method for lang opts and use in C compiler classes.Jussi Pakkanen1-34/+56
2024-05-23Refactor option classes to their own file.Jussi Pakkanen1-17/+17
2024-05-19Fix handling of C standard support for Emscripten.Ralf Gommers1-0/+10
2024-03-15Improve error messages for invalid option valuesCharles Brunet1-18/+21
2024-03-15compilers: No need to pass exe_wrapper everywhereXavier Claessens1-39/+28
2024-03-12Added support for Texas Instruments C6000 compiler.Petr Machacek1-0/+3
2024-01-15compilers: add c23 and gnu23 c_stdsSimon Ser1-1/+7
2023-12-13Use SPDX-License-Identifier consistentlyDylan Baker1-11/+1
2023-08-07c_std, cpp_std: Change to a list of desired versions in preference orderXavier Claessens1-58/+56
2023-06-26linkers: delay implementations import until detect is runEli Schwartz1-1/+1
2023-05-31mlog: remove direct calls to log_onceDylan Baker1-3/+3
2023-04-24Initial support for Metrowerks C/C++ compilerNomura1-0/+59
2022-12-27emscripten: enforce version 1.39.19 or higherKleis Auke Wolthuizen1-0/+2
2022-11-27Add warning_level=everythingDavid Robillard1-7/+14
2022-10-25Compilers: Keep ccache and exelist separatedXavier Claessens1-32/+32
2022-10-24basic support for oneapi compilersRobert Cohn1-0/+10
2022-08-29flake8: move typing-only imports into T.TYPE_CHECKINGEli Schwartz1-1/+3
2022-05-19Fix invalid Python overridesTristan Partin1-3/+1
2022-03-22OptionOverrideProxy: Make it immutable to avoid copiesXavier Claessens1-16/+16
2022-02-02Genericise TI compiler and add MSP430 supportWilliam Toohey1-19/+6
2022-01-10compilers: push the compiler id to a class variableDylan Baker1-5/+7
2022-01-03armltdclang: add support for ARM Ltd.'s `armclang` toolchainBen Boeckel1-0/+7
2021-12-16armclang: clarify that this is support for the Keil cross-compilerBen Boeckel1-0/+4
2021-11-16Support ancient (<3.4.0) gcc versionsWilliam Toohey1-1/+4
2021-10-27fix various flake8 whitespace errorsEli Schwartz1-3/+3
2021-10-04fix extra whitespaceEli Schwartz1-1/+0
2021-09-29compilers/elbrus: Deal with C/C++/Fortran stds more correctlymakise-homura1-6/+12
2021-09-29compilers/elbrus: Fix incorrect inheritance model of Elbrus*Compilermakise-homura1-5/+3
2021-08-16compilers: Fix extra_args parameterDylan Baker1-1/+2
2021-06-07upgrade percent formatted strings pyupgrade did not catchEli Schwartz1-3/+3
2021-03-19split program related classes and functions out of dependenciesDylan Baker1-1/+2
2021-03-04mass rewrite of string formatting to use f-strings everywhereEli Schwartz1-3/+3
2021-01-23split mesonlib into a packageDylan Baker1-1/+2
2021-01-13Fix misspellsAntonin Décimo1-1/+1
2021-01-11move handling of CFLAGS and friends to environmentDylan Baker1-2/+1
2021-01-04move OptionKey to mesonlibDylan Baker1-2/+1
2021-01-04use OptionKey for compiler_optionsDylan Baker1-62/+79
2021-01-04Add choices to OptionProxyDylan Baker1-12/+12
2020-11-13msvc: enable /std:c17 flagjpark371-8/+19
2020-11-12clang-cl: Allow clang-cl (when compiling C) to pass std to underlying clang)Dylan Baker1-34/+33
2020-11-12compilers/c: Log that MSVC doesn't support gnu stdsDylan Baker1-1/+13
2020-11-12compilers: define standards in the base language compilerDylan Baker1-84/+28
2020-11-12compilers: Standardize the names of compiler optionsDylan Baker1-9/+9
2020-11-12compilers/c: Clang-cl also needs specific handling for standardsDylan Baker1-0/+19
2020-11-12Make MSVC accept gnu11 as a language standard version. Closes: #7611.Jussi Pakkanen1-3/+7