Fix finding the static linker for native compiler in cross build
Native ar and cross ar are not the same!
This commit is contained in:
parent
b204a74917
commit
8165fa6ad0
|
@ -1023,7 +1023,8 @@ class Environment:
|
|||
return comp, cross_comp
|
||||
|
||||
def detect_static_linker(self, compiler):
|
||||
linker = self.binaries.host.lookup_entry('ar')
|
||||
for_machine = MachineChoice.HOST if compiler.is_cross else MachineChoice.BUILD
|
||||
linker = self.binaries[for_machine].lookup_entry('ar')
|
||||
if linker is not None:
|
||||
linkers = [linker]
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue