summaryrefslogtreecommitdiffstats
path: root/Tests/VSMARMASM
Commit message (Collapse)AuthorAgeFilesLines
* VS: Honor compile options for ASM_MARMASMBrad King2023-01-262-1/+4
| | | | | | | | The Ninja and Makefile generators honor `target_compile_options` and friends for ASM_MARMMASM `.asm` sources. Teach the VS generator to honor them too for consistency. Issue: #24289
* ASM_MARMASM: Populate MSVC debug information format abstraction tableBrad King2022-12-151-1/+1
| | | | | | | | | | | | | | | In commit 3166547cf6 (ASM_MARMASM: Add support for Microsoft ARM assembler language, 2022-10-14) we overlooked populating the runtime library selection flags for the Microsoft ARM assembler, needed since commit 0e96a20478 (MSVC: Add abstraction for debug information format, 2022-08-25, v3.25.0-rc1~142^2~1). Its compiler id is `MSVC`, so our generators expect the table to be populated. It only supports `Embedded` debug info. Use empty flags for the other formats. Without this fix, enabling the `ASM_MARMASM` language with policy `CMP0141` set to `NEW` causes an error due to the missing table entries. Issue: #24249
* ASM_MARMASM: Add support for Microsoft ARM assembler languageIlia K2022-11-093-0/+18
https://learn.microsoft.com/en-us/cpp/assembler/arm/arm-assembler-reference Fixes: #23999