aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/swift.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-09-21 10:38:17 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-09-24 12:14:13 -0700
commit2c0fbe161d61d2d15d29892456544442ab1c4ff6 (patch)
tree18eea4af185465640f29727a3761e3b1af5c36fc /mesonbuild/compilers/swift.py
parent1592b7a800c3b109a1b502bfb03f4e21827da334 (diff)
downloadmeson-2c0fbe161d61d2d15d29892456544442ab1c4ff6.zip
meson-2c0fbe161d61d2d15d29892456544442ab1c4ff6.tar.gz
meson-2c0fbe161d61d2d15d29892456544442ab1c4ff6.tar.bz2
compilers: make is_cross part of the base Compiler class
Every class needs to set this, so it should be part of the base. For classes that require is_cross, the positional argument remains in their signature. For those that don't, they just allow the base class to set their value to it's default of False.
Diffstat (limited to 'mesonbuild/compilers/swift.py')
-rw-r--r--mesonbuild/compilers/swift.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/compilers/swift.py b/mesonbuild/compilers/swift.py
index f753133..55f2761 100644
--- a/mesonbuild/compilers/swift.py
+++ b/mesonbuild/compilers/swift.py
@@ -36,11 +36,10 @@ class SwiftCompiler(Compiler):
language = 'swift'
def __init__(self, exelist, version, for_machine: MachineChoice,
- is_cross, info: 'MachineInfo', **kwargs):
- super().__init__(exelist, version, for_machine, info, **kwargs)
+ is_cross: bool, info: 'MachineInfo', **kwargs):
+ super().__init__(exelist, version, for_machine, info, is_cross=is_cross, **kwargs)
self.version = version
self.id = 'llvm'
- self.is_cross = is_cross
def needs_static_linker(self):
return True