summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/asm.py
diff options
context:
space:
mode:
authorLuca Bacci <luca.bacci982@gmail.com>2025-11-01 09:58:06 +0100
committerXavier Claessens <xclaesse@gmail.com>2025-11-01 09:05:18 -0400
commitd00f840c573103c2d51aed2b169386f7acfe7026 (patch)
treee84df44ccdddf8dba76b6b666a276de9028b6764 /mesonbuild/compilers/asm.py
parent29632e692eb66ddd3bad30f47e3bf43ccb1491df (diff)
downloadmeson-d00f840c573103c2d51aed2b169386f7acfe7026.tar.gz
Compilers: Add get_depfile_format() method
Diffstat (limited to 'mesonbuild/compilers/asm.py')
-rw-r--r--mesonbuild/compilers/asm.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/asm.py b/mesonbuild/compilers/asm.py
index fd6a0de33..052e83329 100644
--- a/mesonbuild/compilers/asm.py
+++ b/mesonbuild/compilers/asm.py
@@ -266,6 +266,9 @@ class MasmARMCompiler(ASMCompiler):
def get_crt_compile_args(self, crt_val: str, buildtype: str) -> T.List[str]:
return []
+ def get_depfile_format(self) -> str:
+ return 'msvc'
+
def depfile_for_object(self, objfile: str) -> T.Optional[str]:
return None