Call to CPPCompilers initilisation function was missing the info parameter during ArmClangCPPCompiler initialisation
This commit is contained in:
parent
717a2ae128
commit
697bb28084
|
@ -238,7 +238,9 @@ class EmscriptenCPPCompiler(EmscriptenMixin, LinkerEnvVarsMixin, ClangCPPCompile
|
|||
class ArmclangCPPCompiler(ArmclangCompiler, CPPCompiler):
|
||||
def __init__(self, exelist, version, for_machine: MachineChoice,
|
||||
is_cross, info: 'MachineInfo', exe_wrapper=None, **kwargs):
|
||||
CPPCompiler.__init__(self, exelist, version, for_machine, is_cross, exe_wrapper, **kwargs)
|
||||
CPPCompiler.__init__(self, exelist=exelist, version=version,
|
||||
for_machine=for_machine, is_cross=is_cross,
|
||||
info=info, exe_wrapper=exe_wrapper, **kwargs)
|
||||
ArmclangCompiler.__init__(self)
|
||||
default_warn_args = ['-Wall', '-Winvalid-pch', '-Wnon-virtual-dtor']
|
||||
self.warn_args = {'0': [],
|
||||
|
|
Loading…
Reference in New Issue