aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
AgeCommit message (Expand)AuthorFilesLines
2017-02-02compilers: Don't use CompilerArgs() for sanity checksNirbheek Chauhan1-2/+2
2017-01-28Add get_no_stdinc_args() for C++ tooNirbheek Chauhan1-0/+3
2017-01-27compilers: New class CompilerArgs derived from list()Nirbheek Chauhan1-83/+218
2017-01-26Merge pull request #1328 from centricular/has-function-prefixJussi Pakkanen1-145/+163
2017-01-26compilers: Don't run built-in checks on MSVCNirbheek Chauhan1-0/+4
2017-01-26compilers: Fix has_function check for builtinsNirbheek Chauhan1-24/+25
2017-01-26compilers: Add prefix before limits.h in has_function checksNirbheek Chauhan1-5/+7
2017-01-26compilers: Pass -fpermissive on all C++ compilers except MSVCNirbheek Chauhan1-14/+11
2017-01-26compilers: Use named placeholders for string formattingNirbheek Chauhan1-123/+120
2017-01-26compilers: Fix builtin checks with clang on LinuxNirbheek Chauhan1-1/+10
2017-01-23Use --coverage rather than hardcoding -lgcov. Closes #1311.Jussi Pakkanen1-1/+1
2017-01-24compilers: Use __has_include macro for has_header checksNirbheek Chauhan1-2/+10
2017-01-24compilers: Remove unnecessary arguments to super()Nirbheek Chauhan1-2/+2
2017-01-23Merge pull request #1320 from centricular/fix-llvmir-and-assemblyJussi Pakkanen1-3/+4
2017-01-21Fix targets with generated LLVM IR and Assembly sourcesNirbheek Chauhan1-3/+4
2017-01-18cleanup: Remove redundant parenthesesMike Sinkovsky1-12/+12
2017-01-11style: [E1**] IndentationMike Sinkovsky1-6/+3
2017-01-11style: [E721] do not compare types, use 'isinstance()'Mike Sinkovsky1-2/+2
2017-01-03Merge pull request #1272 from mesonbuild/ignatenko/lintJussi Pakkanen1-2/+2
2017-01-04ifort: Derive from IntelCompiler base classNirbheek Chauhan1-7/+9
2017-01-04icc: Always specify the language to use for PCH usageNirbheek Chauhan1-1/+5
2017-01-04compilers.py: Use a common variable for warn argsNirbheek Chauhan1-36/+39
2017-01-04compilers: gnu++03 is not a valid Clang C++ standardNirbheek Chauhan1-1/+1
2017-01-04icc: Fix C/C++ std options and add a unit test for themNirbheek Chauhan1-17/+20
2017-01-04ICC 17.0.0 working for Linux and Ninja Backend.Philipp Geier1-2/+139
2017-01-03fix 'unreachable code' warningsMike Sinkovsky1-1/+0
2017-01-03fix 'method signature does no match signature of overridden method'Mike Sinkovsky1-1/+1
2017-01-02style: fix E127 violationsIgor Gnatenko1-2/+2
2017-01-02style: fix E202 violationsIgor Gnatenko1-1/+1
2017-01-02fix for cross-builds targeting macosxMike Sinkovsky1-19/+21
2017-01-01style: fix E124 violationsIgor Gnatenko1-5/+5
2017-01-01style: fix E265 violationsIgor Gnatenko1-1/+1
2017-01-01style: fix E231 violationsIgor Gnatenko1-2/+2
2017-01-01style: fix E226 violationsIgor Gnatenko1-10/+10
2017-01-01style: fix E225 violationsIgor Gnatenko1-1/+1
2016-12-31Fix space before :.Jussi Pakkanen1-98/+98
2016-12-23gdc: Make dependency check workMatthias Klumpp1-3/+1
2016-12-21d: Correctly set SONAME on D shared librariesMatthias Klumpp1-1/+2
2016-12-21ldc/dmd: Properly set warning argumentsMatthias Klumpp1-4/+7
2016-12-21Merge pull request #1233 from mesonbuild/wip/ignatenko/code-styleJussi Pakkanen1-3/+3
2016-12-20Fix several more lint errorsNirbheek Chauhan1-5/+1
2016-12-19tree-wide: remove trailing whitespacesIgor Gnatenko1-3/+3
2016-12-19Fix undefined variables in cross-compile.Elliott Sales de Andrade1-4/+4
2016-12-18Merge pull request #1207 from centricular/has-header-preprocess-onlyJussi Pakkanen1-27/+45
2016-12-18compilers: Always pass -pipe to compiler checksNirbheek Chauhan1-0/+3
2016-12-18has_header: Don't compile, only preprocessNirbheek Chauhan1-27/+42
2016-12-17compilers: Ignore -pthread in link flags with MSVCNirbheek Chauhan1-0/+3
2016-12-13Only add build dir inlude directives if the corresponding dir exists. Closes ...Jussi Pakkanen1-2/+2
2016-12-13Merge pull request #1171 from centricular/fix-extracted-generated-prebuilt-ob...Jussi Pakkanen1-2/+9
2016-12-13Merge pull request #1184 from centricular/cc.prefixes_underscoreJussi Pakkanen1-13/+53