summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/markdown/Reference-tables.md3
-rw-r--r--mesonbuild/backend/backends.py21
-rw-r--r--mesonbuild/backend/ninjabackend.py76
-rw-r--r--mesonbuild/backend/vs2010backend.py4
-rw-r--r--mesonbuild/build.py7
-rw-r--r--mesonbuild/compilers/c.py12
-rw-r--r--mesonbuild/compilers/compilers.py8
-rw-r--r--mesonbuild/compilers/detect.py19
-rw-r--r--mesonbuild/compilers/mixins/apple.py4
-rw-r--r--mesonbuild/compilers/mixins/elbrus.py4
-rw-r--r--mesonbuild/compilers/mixins/gnu.py4
-rw-r--r--mesonbuild/compilers/mixins/tasking.py138
-rw-r--r--mesonbuild/envconfig.py1
-rw-r--r--mesonbuild/linkers/base.py1
-rw-r--r--mesonbuild/linkers/linkers.py71
15 files changed, 348 insertions, 25 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md
index 0cf8bcfd7..5b27e3de5 100644
--- a/docs/markdown/Reference-tables.md
+++ b/docs/markdown/Reference-tables.md
@@ -49,6 +49,7 @@ These are return values of the `get_id` (Compiler family) and
| armasm | Microsoft Macro Assembler for ARM and AARCH64 (Since 0.64.0) | |
| mwasmarm | Metrowerks Assembler for Embedded ARM | |
| mwasmeppc | Metrowerks Assembler for Embedded PowerPC | |
+| tasking | TASKING VX-toolset | |
## Linker ids
@@ -80,6 +81,7 @@ These are return values of the `get_linker_id` method in a compiler object.
| ccomp | CompCert used as the linker driver |
| mwldarm | The Metrowerks Linker with the ARM interface, used with mwccarm only |
| mwldeppc | The Metrowerks Linker with the PowerPC interface, used with mwcceppc only |
+| tasking | TASKING VX-toolset |
For languages that don't have separate dynamic linkers such as C# and Java, the
`get_linker_id` will return the compiler name.
@@ -139,6 +141,7 @@ set in the cross file.
| wasm64 | 64 bit Webassembly |
| x86 | 32 bit x86 processor |
| x86_64 | 64 bit x86 processor |
+| tricore | Tricore 32 bit processor |
Any cpu family not listed in the above list is not guaranteed to
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index fb912b1d8..18caf7bbe 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -24,10 +24,11 @@ from .. import dependencies
from .. import programs
from .. import mesonlib
from .. import mlog
-from ..compilers import LANGUAGES_USING_LDFLAGS, detect
+from ..compilers import LANGUAGES_USING_LDFLAGS, detect, lang_suffixes
from ..mesonlib import (
File, MachineChoice, MesonException, OrderedSet,
- ExecutableSerialisation, classify_unity_sources,
+ ExecutableSerialisation, EnvironmentException,
+ classify_unity_sources, get_compiler_for_source
)
from ..options import OptionKey
@@ -837,7 +838,7 @@ class Backend:
fname = fname.replace(ch, '_')
return hashed + fname
- def object_filename_from_source(self, target: build.BuildTarget, source: 'FileOrString', targetdir: T.Optional[str] = None) -> str:
+ def object_filename_from_source(self, target: build.BuildTarget, compiler: Compiler, source: 'FileOrString', targetdir: T.Optional[str] = None) -> str:
assert isinstance(source, mesonlib.File)
if isinstance(target, build.CompileTarget):
return target.sources_map[source]
@@ -868,7 +869,16 @@ class Backend:
gen_source = os.path.relpath(os.path.join(build_dir, rel_src),
os.path.join(self.environment.get_source_dir(), target.get_subdir()))
machine = self.environment.machines[target.for_machine]
- ret = self.canonicalize_filename(gen_source) + '.' + machine.get_object_suffix()
+ object_suffix = machine.get_object_suffix()
+ # For the TASKING compiler, in case of LTO or prelinking the object suffix has to be .mil
+ if compiler.get_id() == 'tasking':
+ if target.get_option(OptionKey('b_lto')) or (isinstance(target, build.StaticLibrary) and target.prelink):
+ if not source.rsplit('.', 1)[1] in lang_suffixes['c']:
+ if isinstance(target, build.StaticLibrary) and not target.prelink:
+ raise EnvironmentException('Tried using MIL linking for a static library with a assembly file. This can only be done if the static library is prelinked or disable \'b_lto\'.')
+ else:
+ object_suffix = 'mil'
+ ret = self.canonicalize_filename(gen_source) + '.' + object_suffix
if targetdir is not None:
return os.path.join(targetdir, ret)
return ret
@@ -924,7 +934,8 @@ class Backend:
sources.append(_src)
for osrc in sources:
- objname = self.object_filename_from_source(extobj.target, osrc, targetdir)
+ compiler = get_compiler_for_source(extobj.target.compilers.values(), osrc)
+ objname = self.object_filename_from_source(extobj.target, compiler, osrc, targetdir)
objpath = os.path.join(proj_dir_to_build_root, objname)
result.append(objpath)
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index b4ec9ef00..70122c379 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -246,7 +246,7 @@ class NinjaRule:
def write(self, outfile: T.TextIO) -> None:
rspfile_args = self.args
rspfile_quote_func: T.Callable[[str], str]
- if self.rspfile_quote_style is RSPFileSyntax.MSVC:
+ if self.rspfile_quote_style in {RSPFileSyntax.MSVC, RSPFileSyntax.TASKING}:
rspfile_quote_func = cmd_quote
rspfile_args = [NinjaCommandArg('$in_newline', arg.quoting) if arg.s == '$in' else arg for arg in rspfile_args]
else:
@@ -261,7 +261,10 @@ class NinjaRule:
for rsp in rule_iter():
outfile.write(f'rule {self.name}{rsp}\n')
if rsp == '_RSP':
- outfile.write(' command = {} @$out.rsp\n'.format(' '.join([self._quoter(x) for x in self.command])))
+ if self.rspfile_quote_style is RSPFileSyntax.TASKING:
+ outfile.write(' command = {} --option-file=$out.rsp\n'.format(' '.join([self._quoter(x) for x in self.command])))
+ else:
+ outfile.write(' command = {} @$out.rsp\n'.format(' '.join([self._quoter(x) for x in self.command])))
outfile.write(' rspfile = $out.rsp\n')
outfile.write(' rspfile_content = {}\n'.format(' '.join([self._quoter(x, rspfile_quote_func) for x in rspfile_args])))
else:
@@ -412,7 +415,7 @@ class NinjaBuildElement:
outfile.write(line)
if use_rspfile:
- if self.rule.rspfile_quote_style is RSPFileSyntax.MSVC:
+ if self.rule.rspfile_quote_style in {RSPFileSyntax.MSVC, RSPFileSyntax.TASKING}:
qf = cmd_quote
else:
qf = gcc_rsp_quote
@@ -732,6 +735,11 @@ class NinjaBackend(backends.Backend):
for ext in ['', '_RSP']]
rules += [f"{rule}{ext}" for rule in [self.compiler_to_pch_rule_name(compiler)]
for ext in ['', '_RSP']]
+ # Add custom MIL link rules to get the files compiled by the TASKING compiler family to MIL files included in the database
+ if compiler.get_id() == 'tasking':
+ rule = self.get_compiler_rule_name('tasking_mil_compile', compiler.for_machine)
+ rules.append(rule)
+ rules.append(f'{rule}_RSP')
compdb_options = ['-x'] if mesonlib.version_compare(self.ninja_version, '>=1.9') else []
ninja_compdb = self.ninja_command + ['-t', 'compdb'] + compdb_options + rules
builddir = self.environment.get_build_dir()
@@ -1078,7 +1086,10 @@ class NinjaBackend(backends.Backend):
# Skip the link stage for this special type of target
return
linker, stdlib_args = self.determine_linker_and_stdlib_args(target)
- if isinstance(target, build.StaticLibrary) and target.prelink:
+
+ if not isinstance(target, build.StaticLibrary):
+ final_obj_list = obj_list
+ elif target.prelink:
final_obj_list = self.generate_prelink(target, obj_list)
else:
final_obj_list = obj_list
@@ -2486,6 +2497,33 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
self.add_rule(NinjaRule(rule, command, args, description, **options))
self.created_llvm_ir_rule[compiler.for_machine] = True
+ def generate_tasking_mil_compile_rules(self, compiler: Compiler) -> None:
+ rule = self.get_compiler_rule_name('tasking_mil_compile', compiler.for_machine)
+ depargs = NinjaCommandArg.list(compiler.get_dependency_gen_args('$out', '$DEPFILE'), Quoting.none)
+ command = compiler.get_exelist()
+ args = ['$ARGS'] + depargs + NinjaCommandArg.list(compiler.get_output_args('$out'), Quoting.none) + ['-cm', '$in']
+ description = 'Compiling to C object $in'
+ if compiler.get_argument_syntax() == 'msvc':
+ deps = 'msvc'
+ depfile = None
+ else:
+ deps = 'gcc'
+ depfile = '$DEPFILE'
+
+ options = self._rsp_options(compiler)
+
+ self.add_rule(NinjaRule(rule, command, args, description, **options, deps=deps, depfile=depfile))
+
+ def generate_tasking_mil_link_rules(self, compiler: Compiler) -> None:
+ rule = self.get_compiler_rule_name('tasking_mil_link', compiler.for_machine)
+ command = compiler.get_exelist()
+ args = ['$ARGS', '--mil-link'] + NinjaCommandArg.list(compiler.get_output_args('$out'), Quoting.none) + ['-c', '$in']
+ description = 'MIL linking object $out'
+
+ options = self._rsp_options(compiler)
+
+ self.add_rule(NinjaRule(rule, command, args, description, **options))
+
def generate_compile_rule_for(self, langname: str, compiler: Compiler) -> None:
if langname == 'java':
self.generate_java_compile_rule(compiler)
@@ -2576,6 +2614,8 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
for langname, compiler in clist.items():
if compiler.get_id() == 'clang':
self.generate_llvm_ir_compile_rule(compiler)
+ if compiler.get_id() == 'tasking':
+ self.generate_tasking_mil_compile_rules(compiler)
self.generate_compile_rule_for(langname, compiler)
self.generate_pch_rule_for(langname, compiler)
for mode in compiler.get_modes():
@@ -3015,7 +3055,7 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
raise AssertionError(f'BUG: broken generated source file handling for {src!r}')
else:
raise InvalidArguments(f'Invalid source type: {src!r}')
- obj_basename = self.object_filename_from_source(target, src)
+ obj_basename = self.object_filename_from_source(target, compiler, src)
rel_obj = os.path.join(self.get_target_private_dir(target), obj_basename)
dep_file = compiler.depfile_for_object(rel_obj)
@@ -3036,8 +3076,17 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
i = os.path.join(self.get_target_private_dir(target), compiler.get_pch_name(pchlist[0]))
arr.append(i)
pch_dep = arr
-
- compiler_name = self.compiler_to_rule_name(compiler)
+ # If TASKING compiler family is used and MIL linking is enabled for the target,
+ # then compilation rule name is a special one to output MIL files
+ # instead of object files for .c files
+ key = OptionKey('b_lto')
+ if compiler.get_id() == 'tasking':
+ if ((isinstance(target, build.StaticLibrary) and target.prelink) or target.get_option(key)) and src.rsplit('.', 1)[1] in compilers.lang_suffixes['c']:
+ compiler_name = self.get_compiler_rule_name('tasking_mil_compile', compiler.for_machine)
+ else:
+ compiler_name = self.compiler_to_rule_name(compiler)
+ else:
+ compiler_name = self.compiler_to_rule_name(compiler)
extra_deps = []
if compiler.get_language() == 'fortran':
# Can't read source file to scan for deps if it's generated later
@@ -3414,13 +3463,19 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
prelinker = target.get_prelinker()
cmd = prelinker.exelist[:]
- cmd += prelinker.get_prelink_args(prelink_name, obj_list)
+ obj_list, args = prelinker.get_prelink_args(prelink_name, obj_list)
+ cmd += args
+ if prelinker.get_prelink_append_compile_args():
+ compile_args = self._generate_single_compile_base_args(target, prelinker)
+ compile_args += self._generate_single_compile_target_args(target, prelinker)
+ compile_args = compile_args.compiler.compiler_args(compile_args)
+ cmd += compile_args.to_native()
cmd = self.replace_paths(target, cmd)
elem.add_item('COMMAND', cmd)
elem.add_item('description', f'Prelinking {prelink_name}')
self.add_build(elem)
- return [prelink_name]
+ return obj_list
def generate_link(self, target: build.BuildTarget, outname, obj_list, linker: T.Union['Compiler', 'StaticLinker'], extra_args=None, stdlib_args=None):
extra_args = extra_args if extra_args is not None else []
@@ -3562,6 +3617,9 @@ https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47485'''))
for t in target.link_depends])
elem = NinjaBuildElement(self.all_outputs, outname, linker_rule, obj_list, implicit_outs=implicit_outs)
elem.add_dep(dep_targets + custom_target_libraries)
+ if linker.get_id() == 'tasking':
+ if len([x for x in dep_targets + custom_target_libraries if x.endswith('.ma')]) > 0 and not target.get_option(OptionKey('b_lto')):
+ raise MesonException(f'Tried to link the target named \'{target.name}\' with a MIL archive without LTO enabled! This causes the compiler to ignore the archive.')
# Compiler args must be included in TI C28x linker commands.
if linker.get_id() in {'c2000', 'c6000', 'ti'}:
diff --git a/mesonbuild/backend/vs2010backend.py b/mesonbuild/backend/vs2010backend.py
index 08a19c659..0fb30a7b9 100644
--- a/mesonbuild/backend/vs2010backend.py
+++ b/mesonbuild/backend/vs2010backend.py
@@ -1725,7 +1725,7 @@ class Vs2010Backend(backends.Backend):
self.add_preprocessor_defines(lang, inc_cl, file_defines)
self.add_include_dirs(lang, inc_cl, file_inc_dirs)
ET.SubElement(inc_cl, 'ObjectFileName').text = "$(IntDir)" + \
- self.object_filename_from_source(target, s)
+ self.object_filename_from_source(target, compiler, s)
for s in gen_src:
if path_normalize_add(s, previous_sources):
inc_cl = ET.SubElement(inc_src, 'CLCompile', Include=s)
@@ -1739,7 +1739,7 @@ class Vs2010Backend(backends.Backend):
self.add_include_dirs(lang, inc_cl, file_inc_dirs)
s = File.from_built_file(target.get_subdir(), s)
ET.SubElement(inc_cl, 'ObjectFileName').text = "$(IntDir)" + \
- self.object_filename_from_source(target, s)
+ self.object_filename_from_source(target, compiler, s)
for lang, headers in pch_sources.items():
impl = headers[1]
if impl and path_normalize_add(impl, previous_sources):
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index ed777ff25..5d35e0833 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2019,6 +2019,8 @@ class Executable(BuildTarget):
elif ('c' in self.compilers and self.compilers['c'].get_id() in {'mwccarm', 'mwcceppc'} or
'cpp' in self.compilers and self.compilers['cpp'].get_id() in {'mwccarm', 'mwcceppc'}):
self.suffix = 'nef'
+ elif ('c' in self.compilers and self.compilers['c'].get_id() == 'tasking'):
+ self.suffix = 'elf'
else:
self.suffix = machine.get_exe_suffix()
self.filename = self.name
@@ -2174,7 +2176,10 @@ class StaticLibrary(BuildTarget):
elif self.rust_crate_type == 'staticlib':
self.suffix = 'a'
else:
- self.suffix = 'a'
+ if 'c' in self.compilers and self.compilers['c'].get_id() == 'tasking':
+ self.suffix = 'ma' if self.options.get_value('b_lto') and not self.prelink else 'a'
+ else:
+ self.suffix = 'a'
self.filename = self.prefix + self.name + '.' + self.suffix
self.outputs[0] = self.filename
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index 5868211a6..c75120fee 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -27,6 +27,7 @@ from .mixins.pgi import PGICompiler
from .mixins.emscripten import EmscriptenMixin
from .mixins.metrowerks import MetrowerksCompiler
from .mixins.metrowerks import mwccarm_instruction_set_args, mwcceppc_instruction_set_args
+from .mixins.tasking import TaskingCompiler
from .compilers import (
gnu_winlibs,
msvc_winlibs,
@@ -830,3 +831,14 @@ class MetrowerksCCompilerEmbeddedPowerPC(MetrowerksCompiler, CCompiler):
if std != 'none':
args.append('-lang ' + std)
return args
+
+class TaskingCCompiler(TaskingCompiler, CCompiler):
+ id = 'tasking'
+
+ def __init__(self, ccache: T.List[str], exelist: T.List[str], version: str, for_machine: MachineChoice,
+ is_cross: bool, info: 'MachineInfo',
+ linker: T.Optional['DynamicLinker'] = None,
+ full_version: T.Optional[str] = None):
+ CCompiler.__init__(self, ccache, exelist, version, for_machine, is_cross,
+ info, linker=linker, full_version=full_version)
+ TaskingCompiler.__init__(self)
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 8788df0be..3dfa0ff27 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -432,8 +432,8 @@ class CompileResult(HoldableObject):
output_name: T.Optional[str] = field(default=None, init=False)
cached: bool = field(default=False, init=False)
-
class Compiler(HoldableObject, metaclass=abc.ABCMeta):
+
# Libraries to ignore in find_library() since they are provided by the
# compiler or the C library. Currently only used for MSVC.
ignore_libs: T.List[str] = []
@@ -1327,9 +1327,13 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta):
# TODO: using a TypeDict here would improve this
raise EnvironmentException(f'{self.id} does not implement get_feature_args')
- def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.List[str]:
+ def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.Tuple[T.List[str], T.List[str]]:
raise EnvironmentException(f'{self.id} does not know how to do prelinking.')
+ def get_prelink_append_compile_args(self) -> bool:
+ """Controls whether compile args have to be used for prelinking or not"""
+ return False
+
def rsp_file_syntax(self) -> 'RSPFileSyntax':
"""The format of the RSP file that this compiler supports.
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index d88441dff..5bc14350e 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -240,6 +240,8 @@ def detect_static_linker(env: 'Environment', compiler: Compiler) -> StaticLinker
return linkers.MetrowerksStaticLinkerARM(linker)
else:
return linkers.MetrowerksStaticLinkerEmbeddedPowerPC(linker)
+ if 'TASKING VX-toolset' in err:
+ return linkers.TaskingStaticLinker(linker)
if p.returncode == 0:
return linkers.ArLinker(compiler.for_machine, linker)
if p.returncode == 1 and err.startswith('usage'): # OSX
@@ -605,6 +607,23 @@ def _detect_c_or_cpp_compiler(env: 'Environment', lang: str, for_machine: Machin
return cls(
ccache, compiler, compiler_version, for_machine, is_cross, info,
full_version=full_version, linker=linker)
+ if 'TASKING VX-toolset' in err:
+ cls = c.TaskingCCompiler
+ lnk = linkers.TaskingLinker
+
+ tasking_ver_match = re.search(r'v([0-9]+)\.([0-9]+)r([0-9]+) Build ([0-9]+)', err)
+ assert tasking_ver_match is not None, 'for mypy'
+ tasking_version = '.'.join(x for x in tasking_ver_match.groups() if x is not None)
+
+ env.coredata.add_lang_args(cls.language, cls, for_machine, env)
+ ld = env.lookup_binary_entry(for_machine, cls.language + '_ld')
+ if ld is None:
+ raise MesonException(f'{cls.language}_ld was not properly defined in your cross file')
+
+ linker = lnk(ld, for_machine, version=tasking_version)
+ return cls(
+ ccache, compiler, tasking_version, for_machine, is_cross, info,
+ full_version=full_version, linker=linker)
_handle_exceptions(popen_exceptions, compilers)
raise EnvironmentException(f'Unknown compiler {compilers}')
diff --git a/mesonbuild/compilers/mixins/apple.py b/mesonbuild/compilers/mixins/apple.py
index fc93d38a5..6ec923952 100644
--- a/mesonbuild/compilers/mixins/apple.py
+++ b/mesonbuild/compilers/mixins/apple.py
@@ -56,6 +56,6 @@ class AppleCompilerMixin(Compiler):
raise MesonException("Couldn't find libomp")
return self.__BASE_OMP_FLAGS + link
- def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.List[str]:
+ def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.Tuple[T.List[str], T.List[str]]:
# The objects are prelinked through the compiler, which injects -lSystem
- return ['-nostdlib', '-r', '-o', prelink_name] + obj_list
+ return [prelink_name], ['-nostdlib', '-r', '-o', prelink_name] + obj_list
diff --git a/mesonbuild/compilers/mixins/elbrus.py b/mesonbuild/compilers/mixins/elbrus.py
index 66f419cf0..5818d8dee 100644
--- a/mesonbuild/compilers/mixins/elbrus.py
+++ b/mesonbuild/compilers/mixins/elbrus.py
@@ -76,8 +76,8 @@ class ElbrusCompiler(GnuLikeCompiler):
def get_optimization_args(self, optimization_level: str) -> T.List[str]:
return gnu_optimization_args[optimization_level]
- def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.List[str]:
- return ['-r', '-nodefaultlibs', '-nostartfiles', '-o', prelink_name] + obj_list
+ def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.Tuple[T.List[str], T.List[str]]:
+ return [prelink_name], ['-r', '-nodefaultlibs', '-nostartfiles', '-o', prelink_name] + obj_list
def get_pch_suffix(self) -> str:
# Actually it's not supported for now, but probably will be supported in future
diff --git a/mesonbuild/compilers/mixins/gnu.py b/mesonbuild/compilers/mixins/gnu.py
index 976fa7871..66b01ef51 100644
--- a/mesonbuild/compilers/mixins/gnu.py
+++ b/mesonbuild/compilers/mixins/gnu.py
@@ -609,8 +609,8 @@ class GnuCompiler(GnuLikeCompiler):
# error.
return ['-Werror=attributes']
- def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.List[str]:
- return ['-r', '-o', prelink_name] + obj_list
+ def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.Tuple[T.List[str], T.List[str]]:
+ return [prelink_name], ['-r', '-o', prelink_name] + obj_list
def get_lto_compile_args(self, *, threads: int = 0, mode: str = 'default') -> T.List[str]:
if threads == 0:
diff --git a/mesonbuild/compilers/mixins/tasking.py b/mesonbuild/compilers/mixins/tasking.py
new file mode 100644
index 000000000..082cff073
--- /dev/null
+++ b/mesonbuild/compilers/mixins/tasking.py
@@ -0,0 +1,138 @@
+# SPDX-License-Identifier: Apache-2.0
+# Copyright 2012-2023 The Meson development team
+from __future__ import annotations
+
+"""Representations specific to the TASKING embedded C/C++ compiler family."""
+
+import os
+import typing as T
+
+from ...mesonlib import EnvironmentException
+from ...options import OptionKey
+
+if T.TYPE_CHECKING:
+ from ...compilers.compilers import Compiler
+else:
+ # This is a bit clever, for mypy we pretend that these mixins descend from
+ # Compiler, so we get all of the methods and attributes defined for us, but
+ # for runtime we make them descend from object (which all classes normally
+ # do). This gives us DRYer type checking, with no runtime impact
+ Compiler = object
+
+tasking_buildtype_args: T.Mapping[str, T.List[str]] = {
+ 'plain': [],
+ 'debug': [],
+ 'debugoptimized': [],
+ 'release': [],
+ 'minsize': [],
+ 'custom': []
+}
+
+tasking_optimization_args: T.Mapping[str, T.List[str]] = {
+ 'plain': [],
+ '0': ['-O0'],
+ 'g': ['-O1'], # There is no debug specific level, O1 is recommended by the compiler
+ '1': ['-O1'],
+ '2': ['-O2'],
+ '3': ['-O3'],
+ 's': ['-Os']
+}
+
+tasking_debug_args: T.Mapping[bool, T.List[str]] = {
+ False: [],
+ True: ['-g3']
+}
+
+class TaskingCompiler(Compiler):
+ '''
+ Functionality that is common to all TASKING family compilers.
+ '''
+
+ LINKER_PREFIX = '-Wl'
+
+ def __init__(self) -> None:
+ if not self.is_cross:
+ raise EnvironmentException(f'{id} supports only cross-compilation.')
+
+ self.base_options = {
+ OptionKey(o) for o in [
+ 'b_lto',
+ 'b_staticpic',
+ 'b_ndebug'
+ ]
+ }
+
+ default_warn_args = [] # type: T.List[str]
+ self.warn_args = {'0': [],
+ '1': default_warn_args,
+ '2': default_warn_args + [],
+ '3': default_warn_args + [],
+ 'everything': default_warn_args + []} # type: T.Dict[str, T.List[str]]
+ # TODO: add additional compilable files so that meson can detect it
+ self.can_compile_suffixes.add('asm')
+
+ def get_pic_args(self) -> T.List[str]:
+ return ['--pic']
+
+ def get_buildtype_args(self, buildtype: str) -> T.List[str]:
+ return tasking_buildtype_args[buildtype]
+
+ def get_debug_args(self, is_debug: bool) -> T.List[str]:
+ return tasking_debug_args[is_debug]
+
+ def get_compile_only_args(self) -> T.List[str]:
+ return ['-c']
+
+ def get_dependency_gen_args(self, outtarget: str, outfile: str) -> T.List[str]:
+ return [f'--dep-file={outfile}']
+
+ def get_depfile_suffix(self) -> str:
+ return 'dep'
+
+ def get_no_stdinc_args(self) -> T.List[str]:
+ return ['--no-stdinc']
+
+ def get_werror_args(self) -> T.List[str]:
+ return ['--warnings-as-errors']
+
+ def get_no_stdlib_link_args(self) -> T.List[str]:
+ return ['--no-default-libraries']
+
+ def get_output_args(self, outputname: str) -> T.List[str]:
+ return ['-o', outputname]
+
+ def get_include_args(self, path: str, is_system: bool) -> T.List[str]:
+ if path == '':
+ path = '.'
+ return ['-I' + path]
+
+ def get_optimization_args(self, optimization_level: str) -> T.List[str]:
+ return tasking_optimization_args[optimization_level]
+
+ def get_no_optimization_args(self) -> T.List[str]:
+ return ['-O0']
+
+ def get_prelink_args(self, prelink_name: str, obj_list: T.List[str]) -> T.Tuple[T.List[str], T.List[str]]:
+ mil_link_list = []
+ obj_file_list = []
+ for obj in obj_list:
+ if obj.endswith('.mil'):
+ mil_link_list.append(obj)
+ else:
+ obj_file_list.append(obj)
+ obj_file_list.append(prelink_name)
+
+ return obj_file_list, ['--mil-link', '-o', prelink_name, '-c'] + mil_link_list
+
+ def get_prelink_append_compile_args(self) -> bool:
+ return True
+
+ 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] == '-L':
+ parameter_list[idx] = i[:2] + os.path.normpath(os.path.join(build_dir, i[2:]))
+
+ return parameter_list
+
+ def get_preprocess_only_args(self) -> T.List[str]:
+ return ['-E']
diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py
index c99ae4b01..4055b2176 100644
--- a/mesonbuild/envconfig.py
+++ b/mesonbuild/envconfig.py
@@ -64,6 +64,7 @@ known_cpu_families = (
'wasm64',
'x86',
'x86_64',
+ 'tricore'
)
# It would feel more natural to call this "64_BIT_CPU_FAMILIES", but
diff --git a/mesonbuild/linkers/base.py b/mesonbuild/linkers/base.py
index c8efc9d6d..68fdb2ea3 100644
--- a/mesonbuild/linkers/base.py
+++ b/mesonbuild/linkers/base.py
@@ -18,6 +18,7 @@ class RSPFileSyntax(enum.Enum):
MSVC = enum.auto()
GCC = enum.auto()
+ TASKING = enum.auto()
class ArLikeLinker:
diff --git a/mesonbuild/linkers/linkers.py b/mesonbuild/linkers/linkers.py
index d0ffc5618..705e42821 100644
--- a/mesonbuild/linkers/linkers.py
+++ b/mesonbuild/linkers/linkers.py
@@ -526,6 +526,24 @@ class MetrowerksStaticLinkerARM(MetrowerksStaticLinker):
class MetrowerksStaticLinkerEmbeddedPowerPC(MetrowerksStaticLinker):
id = 'mwldeppc'
+class TaskingStaticLinker(StaticLinker):
+ id = 'tasking'
+
+ def __init__(self, exelist: T.List[str]):
+ super().__init__(exelist)
+
+ def can_linker_accept_rsp(self) -> bool:
+ return True
+
+ def rsp_file_syntax(self) -> RSPFileSyntax:
+ return RSPFileSyntax.TASKING
+
+ def get_output_args(self, target: str) -> T.List[str]:
+ return ['-n', target]
+
+ def get_linker_always_args(self) -> T.List[str]:
+ return ['-r']
+
def prepare_rpaths(raw_rpaths: T.Tuple[str, ...], build_dir: str, from_dir: str) -> T.List[str]:
# The rpaths we write must be relative if they point to the build dir,
# because otherwise they have different length depending on the build
@@ -1663,3 +1681,56 @@ class MetrowerksLinkerARM(MetrowerksLinker):
class MetrowerksLinkerEmbeddedPowerPC(MetrowerksLinker):
id = 'mwldeppc'
+
+class TaskingLinker(DynamicLinker):
+ id = 'tasking'
+
+ _OPTIMIZATION_ARGS: T.Dict[str, T.List[str]] = {
+ 'plain': [],
+ '0': ['-O0'],
+ 'g': ['-O1'], # There is no debug specific level, O1 is recommended by the compiler
+ '1': ['-O1'],
+ '2': ['-O2'],
+ '3': ['-O2'], # There is no 3rd level optimization for the linker
+ 's': ['-Os'],
+ }
+
+ def __init__(self, exelist: T.List[str], for_machine: mesonlib.MachineChoice,
+ *, version: str = 'unknown version'):
+ super().__init__(exelist, for_machine, '', [],
+ version=version)
+
+ def get_accepts_rsp(self) -> bool:
+ return True
+
+ def get_lib_prefix(self) -> str:
+ return ""
+
+ def get_allow_undefined_args(self) -> T.List[str]:
+ return []
+
+ def invoked_by_compiler(self) -> bool:
+ return True
+
+ def get_search_args(self, dirname: str) -> T.List[str]:
+ return self._apply_prefix('-L' + dirname)
+
+ def get_output_args(self, outputname: str) -> T.List[str]:
+ return ['-o', outputname]
+
+ def get_lto_args(self) -> T.List[str]:
+ return ['--mil-link']
+
+ def rsp_file_syntax(self) -> RSPFileSyntax:
+ return RSPFileSyntax.TASKING
+
+ def fatal_warnings(self) -> T.List[str]:
+ """Arguments to make all warnings errors."""
+ return self._apply_prefix('--warnings-as-errors')
+
+ def get_link_whole_for(self, args: T.List[str]) -> T.List[str]:
+ args = mesonlib.listify(args)
+ l: T.List[str] = []
+ for a in args:
+ l.extend(self._apply_prefix('-Wl--whole-archive=' + a))
+ return l