Skip to content

Commit

Permalink
masm-arm: Report MSVC argument syntax
Browse files Browse the repository at this point in the history
So the Ninja backend's rule specifies `deps = msvc`, as `deps = gcc`
requires a depfile to be specified.
  • Loading branch information
oleavr committed Jul 18, 2024
1 parent 8138e35 commit 0bffb0b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mesonbuild/compilers/asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,9 @@ class MasmARMCompiler(Compiler):
language = 'masm'
id = 'armasm'

def get_argument_syntax(self) -> str:
return 'msvc'

def needs_static_linker(self) -> bool:
return True

Expand Down

0 comments on commit 0bffb0b

Please sign in to comment.