summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/BuildDepends/GNU-AS.cmake
Commit message (Collapse)AuthorAgeFilesLines
* ASM: Fix preprocessor definition flags for GNU 'as' toolKyle Edwards2020-06-011-0/+1
| | | | Fixes: #20780
* ASM: Fix depfile flags for GNU 'as' toolBrad King2020-03-131-0/+13
The GNU `as --help` shows `--MD <file>` as an option to generate depfiles as needed by Ninja. There is no `-MT <target>` flag but fortunately the generated files automatically account for the `-o <obj>` flag. Issue: #20426