Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | compilers: Select correct clang on e2k for C++ and ObjC++ | makise-homura | 2021-09-29 | 1 | -2/+2 | |
| | ||||||
* | compilers: There is clang for e2k (elbrus) platform finally | makise-homura | 2021-09-29 | 1 | -6/+4 | |
| | ||||||
* | compilers/rust: Add support for clippy | Dylan Baker | 2021-09-24 | 1 | -8/+15 | |
| | | | | | | | | | | | Clippy is a compiler wrapper for rust that provides an extra layer of linting. It's quite popular, but unfortunately doesn't provide the output of the compiler that it's wrapping in it's output, so we don't detect that clippy is rustc. This small patch adds a new compiler class (that is the Rustc class with a different id) and the necessary logic to detect that clippy is in fact rustc) Fixes: #8767 | |||||
* | compilers/detect: use linker_always_args as well as linker exe_list | Dylan Baker | 2021-09-24 | 1 | -1/+1 | |
| | | | | Otherwise we don't get critical arguments like -fuse=lld. | |||||
* | compilers/detect: avoid mutating rustc compiler list | Dylan Baker | 2021-09-24 | 1 | -0/+2 | |
| | | | | Because mutation is bad. | |||||
* | apply flake8 fixes for unused imports and missing imports | Eli Schwartz | 2021-09-14 | 1 | -1/+0 | |
| | ||||||
* | Implemented some missing operation for the NAG Fortran Compiler. | Mat Cross | 2021-09-10 | 1 | -3/+9 | |
| | ||||||
* | condense lines | Eli Schwartz | 2021-07-05 | 1 | -2/+1 | |
| | ||||||
* | more f-strings too complex to be caught by pyupgrade | Eli Schwartz | 2021-07-05 | 1 | -6/+6 | |
| | ||||||
* | C2000: linker uses now binary setting defined within the cross-file | miebka | 2021-07-01 | 1 | -1/+1 | |
| | ||||||
* | Update detect.py | Ian Harvey | 2021-06-27 | 1 | -1/+1 | |
| | | | | Adjust Intel Fortran compiler detection to handle changes in ifort logo with the introduction of the oneapi toolkit. See #8338. | |||||
* | typing: Annotate compilers.detect | Daniel Mensinger | 2021-06-25 | 1 | -62/+73 | |
| | ||||||
* | Split compiler detection from Environment | Daniel Mensinger | 2021-06-25 | 1 | -0/+1209 | |
This moves all the compiler detection logic into the new compilers.detect module. This dramatically reduces the size and complexity of Environment. |