Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-23 | cmake: Add TARGET_ generator expression support (fixes #9305) | Daniel Mensinger | 1 | -1/+1 | |
2021-10-08 | cmake: handle arguments in the [binaries] section of the machine file | Paolo Bonzini | 1 | -6/+17 | |
Sometimes, the machine file can include compiler command line options, in order to pick the correct multilib. For example, Meson uses "$cc --print-search-dirs" to find the library search path, where $cc is the cc from the machine file. Because the outputs of "gcc -m32 --print-search-dirs" and "gcc --print-search-dirs" are different, this only works if you have [binaries] cc = ['gcc', '-m32'] in the machine file. Right now, however, the cmake module assumes that the compiler listed in the machine file is either a compiler, or a "launcher" followed by the compiler. Check if the second argument starts with a slash (for Microsoft-like compilers) or a dash (for everyone else), and if so presume that the CMAKE_*_COMPILER_LAUNCHER need not be defined. | |||||
2021-09-14 | apply flake8 fixes for unused imports and missing imports | Eli Schwartz | 1 | -1/+0 | |
2021-06-29 | fix: Always explicitly set encoding for text files (fixes #8263) | Daniel Mensinger | 1 | -4/+4 | |
2021-05-30 | cmake: select correct generator in toolchain.py | Daniel Mensinger | 1 | -2/+5 | |
2021-05-29 | cmake: Fix CMakeToolchain (fixes #8293) | Daniel Mensinger | 1 | -65/+93 | |
Instead of guessing the internal compiler variables, Meson now runns CMake once to determine what they actually are. | |||||
2021-03-04 | mass rewrite of string formatting to use f-strings everywhere | Eli Schwartz | 1 | -1/+1 | |
performed by running "pyupgrade --py36-plus" and committing the results | |||||
2020-11-20 | use real pathlib module | Dylan Baker | 1 | -1/+1 | |
We added the _pathlib module to work around defeciencies in python 3.5's implementation, since we now rely on 3.6 lets drop this | |||||
2020-10-13 | cmake: Add cross compilation support | Daniel Mensinger | 1 | -0/+217 | |