Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Collated release note snippets to main file. | Jussi Pakkanen | 2017-10-08 | 1 | -23/+0 |
| | |||||
* | Add Compiler.get_supported_arguments() | Daniel Stone | 2017-08-31 | 1 | -0/+23 |
Add a helper for the common pattern of: args_to_use = [] foreach arg : candidate_args if cc.has_argument(arg) args_to_use += arg endif endforeach Replaced with: args_to_use = cc.get_supported_arguments(candidate_args) |