|
|
|
import os
|
|
|
|
import typing as T
|
|
|
|
|
|
|
|
from ..mesonlib import EnvironmentException, get_meson_command
|
|
|
|
from .compilers import Compiler
|
|
|
|
|
|
|
|
if T.TYPE_CHECKING:
|
|
|
|
from ..environment import Environment
|
|
|
|
|
|
|
|
|
|
|
|
class NasmCompiler(Compiler):
|
|
|
|
language = 'nasm'
|
|
|
|
id = 'nasm'
|
|
|
|
|
|
|
|
def needs_static_linker(self) -> bool:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_always_args(self) -> T.List[str]:
|
|
|
|
cpu = '64' if self.info.is_64_bit else '32'
|
|
|
|
if self.info.is_windows() or self.info.is_cygwin():
|
|
|
|
plat = 'win'
|
|
|
|
define = f'WIN{cpu}'
|
|
|
|
elif self.info.is_darwin():
|
|
|
|
plat = 'macho'
|
|
|
|
define = 'MACHO'
|
|
|
|
else:
|
|
|
|
plat = 'elf'
|
|
|
|
define = 'ELF'
|
|
|
|
args = ['-f', f'{plat}{cpu}', f'-D{define}']
|
|
|
|
if self.info.is_64_bit:
|
|
|
|
args.append('-D__x86_64__')
|
|
|
|
return args
|
|
|
|
|
|
|
|
def get_werror_args(self) -> T.List[str]:
|
|
|
|
return ['-Werror']
|
|
|
|
|
|
|
|
def get_output_args(self, outputname: str) -> T.List[str]:
|
|
|
|
return ['-o', outputname]
|
|
|
|
|
|
|
|
def get_optimization_args(self, optimization_level: str) -> T.List[str]:
|
|
|
|
return [f'-O{optimization_level}']
|
|
|
|
|
|
|
|
def get_debug_args(self, is_debug: bool) -> T.List[str]:
|
|
|
|
if is_debug:
|
|
|
|
if self.info.is_windows():
|
|
|
|
return []
|
|
|
|
return ['-g', '-F', 'dwarf']
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_depfile_suffix(self) -> str:
|
|
|
|
return 'd'
|
|
|
|
|
|
|
|
def get_dependency_gen_args(self, outtarget: str, outfile: str) -> T.List[str]:
|
|
|
|
return ['-MD', '-MQ', outtarget, '-MF', outfile]
|
|
|
|
|
|
|
|
def sanity_check(self, work_dir: str, environment: 'Environment') -> None:
|
|
|
|
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 []
|
|
|
|
|
|
|
|
def get_include_args(self, path: str, is_system: bool) -> T.List[str]:
|
|
|
|
if not path:
|
|
|
|
path = '.'
|
|
|
|
return ['-I' + path]
|
|
|
|
|
|
|
|
def compute_parameters_with_absolute_paths(self, parameter_list: T.List[str],
|
|
|
|
build_dir: str) -> T.List[str]:
|
|
|
|
for idx, i in enumerate(parameter_list):
|
|
|
|
if i[:2] == '-I':
|
|
|
|
parameter_list[idx] = i[:2] + os.path.normpath(os.path.join(build_dir, i[2:]))
|
|
|
|
return parameter_list
|
|
|
|
|
|
|
|
class YasmCompiler(NasmCompiler):
|
|
|
|
id = 'yasm'
|
|
|
|
|
|
|
|
def get_exelist(self, ccache: bool = True) -> T.List[str]:
|
|
|
|
# Wrap yasm executable with an internal script that will write depfile.
|
|
|
|
exelist = super().get_exelist(ccache)
|
|
|
|
return get_meson_command() + ['--internal', 'yasm'] + exelist
|
|
|
|
|
|
|
|
def get_debug_args(self, is_debug: bool) -> T.List[str]:
|
|
|
|
if is_debug:
|
|
|
|
if self.info.is_windows():
|
|
|
|
return ['-g', 'null']
|
|
|
|
return ['-g', 'dwarf2']
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_dependency_gen_args(self, outtarget: str, outfile: str) -> T.List[str]:
|
|
|
|
return ['--depfile', outfile]
|
|
|
|
|
|
|
|
# https://learn.microsoft.com/en-us/cpp/assembler/masm/ml-and-ml64-command-line-reference
|
|
|
|
class MasmCompiler(Compiler):
|
|
|
|
language = 'masm'
|
|
|
|
id = 'ml'
|
|
|
|
|
|
|
|
def get_compile_only_args(self) -> T.List[str]:
|
|
|
|
return ['/c']
|
|
|
|
|
|
|
|
def get_argument_syntax(self) -> str:
|
|
|
|
return 'msvc'
|
|
|
|
|
|
|
|
def needs_static_linker(self) -> bool:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_always_args(self) -> T.List[str]:
|
|
|
|
return ['/nologo']
|
|
|
|
|
|
|
|
def get_werror_args(self) -> T.List[str]:
|
|
|
|
return ['/WX']
|
|
|
|
|
|
|
|
def get_output_args(self, outputname: str) -> T.List[str]:
|
|
|
|
return ['/Fo', outputname]
|
|
|
|
|
|
|
|
def get_optimization_args(self, optimization_level: str) -> T.List[str]:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_debug_args(self, is_debug: bool) -> T.List[str]:
|
|
|
|
if is_debug:
|
|
|
|
return ['/Zi']
|
|
|
|
return []
|
|
|
|
|
|
|
|
def sanity_check(self, work_dir: str, environment: 'Environment') -> None:
|
|
|
|
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 []
|
|
|
|
|
|
|
|
def get_include_args(self, path: str, is_system: bool) -> T.List[str]:
|
|
|
|
if not path:
|
|
|
|
path = '.'
|
|
|
|
return ['-I' + path]
|
|
|
|
|
|
|
|
def compute_parameters_with_absolute_paths(self, parameter_list: T.List[str],
|
|
|
|
build_dir: str) -> T.List[str]:
|
|
|
|
for idx, i in enumerate(parameter_list):
|
|
|
|
if i[:2] == '-I' or i[:2] == '/I':
|
|
|
|
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 []
|
|
|
|
|
|
|
|
def depfile_for_object(self, objfile: str) -> T.Optional[str]:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
# https://learn.microsoft.com/en-us/cpp/assembler/arm/arm-assembler-command-line-reference
|
|
|
|
class MasmARMCompiler(Compiler):
|
|
|
|
language = 'masm'
|
|
|
|
id = 'armasm'
|
|
|
|
|
|
|
|
def needs_static_linker(self) -> bool:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_always_args(self) -> T.List[str]:
|
|
|
|
return ['-nologo']
|
|
|
|
|
|
|
|
def get_werror_args(self) -> T.List[str]:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_output_args(self, outputname: str) -> T.List[str]:
|
|
|
|
return ['-o', outputname]
|
|
|
|
|
|
|
|
def get_optimization_args(self, optimization_level: str) -> T.List[str]:
|
|
|
|
return []
|
|
|
|
|
|
|
|
def get_debug_args(self, is_debug: bool) -> T.List[str]:
|
|
|
|
if is_debug:
|
|
|
|
return ['-g']
|
|
|
|
return []
|
|
|
|
|
|
|
|
def sanity_check(self, work_dir: str, environment: 'Environment') -> None:
|
|
|
|
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 []
|
|
|
|
|
|
|
|
def get_include_args(self, path: str, is_system: bool) -> T.List[str]:
|
|
|
|
if not path:
|
|
|
|
path = '.'
|
|
|
|
return ['-i' + path]
|
|
|
|
|
|
|
|
def compute_parameters_with_absolute_paths(self, parameter_list: T.List[str],
|
|
|
|
build_dir: str) -> T.List[str]:
|
|
|
|
for idx, i in enumerate(parameter_list):
|
|
|
|
if i[:2] == '-I':
|
|
|
|
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 []
|
|
|
|
|
|
|
|
def depfile_for_object(self, objfile: str) -> T.Optional[str]:
|
|
|
|
return None
|