nasm: Implement get_crt_compile_args()

This fix a crash when using NASM on Windows.
pull/10959/head
Xavier Claessens 2 years ago committed by Jussi Pakkanen
parent 060595f0d0
commit 64a6969def
  1. 3
      mesonbuild/compilers/asm.py

@ -76,6 +76,9 @@ class NasmCompiler(Compiler):
parameter_list[idx] = i[:2] + os.path.normpath(os.path.join(build_dir, i[2:]))
return parameter_list
def get_crt_compile_args(self, crt_val: str, buildtype: str) -> T.List[str]:
return []
class YasmCompiler(NasmCompiler):
id = 'yasm'

Loading…
Cancel
Save