summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/asm.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/compilers/asm.py')
-rw-r--r--mesonbuild/compilers/asm.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/mesonbuild/compilers/asm.py b/mesonbuild/compilers/asm.py
index 09cf9e11e..d04fbd293 100644
--- a/mesonbuild/compilers/asm.py
+++ b/mesonbuild/compilers/asm.py
@@ -98,10 +98,6 @@ class NasmCompiler(Compiler):
if self.info.cpu_family not in {'x86', 'x86_64'}:
raise EnvironmentException(f'ASM compiler {self.id!r} does not support {self.info.cpu_family} CPU family')
- def get_buildtype_args(self, buildtype: str) -> T.List[str]:
- # FIXME: Not implemented
- return []
-
def get_pic_args(self) -> T.List[str]:
return []
@@ -185,10 +181,6 @@ class MasmCompiler(Compiler):
if self.info.cpu_family not in {'x86', 'x86_64'}:
raise EnvironmentException(f'ASM compiler {self.id!r} does not support {self.info.cpu_family} CPU family')
- def get_buildtype_args(self, buildtype: str) -> T.List[str]:
- # FIXME: Not implemented
- return []
-
def get_pic_args(self) -> T.List[str]:
return []
@@ -240,10 +232,6 @@ class MasmARMCompiler(Compiler):
if self.info.cpu_family not in {'arm', 'aarch64'}:
raise EnvironmentException(f'ASM compiler {self.id!r} does not support {self.info.cpu_family} CPU family')
- def get_buildtype_args(self, buildtype: str) -> T.List[str]:
- # FIXME: Not implemented
- return []
-
def get_pic_args(self) -> T.List[str]:
return []