compilers: Add ICC setting for get_allow_undefined_link_args

pull/4359/head
Dylan Baker 6 years ago
parent f46adb44bf
commit 3ab9620180
  1. 2
      mesonbuild/compilers/c.py

@ -174,6 +174,8 @@ class CCompiler(Compiler):
elif isinstance(self, VisualStudioCCompiler):
# link.exe
return ['/FORCE:UNRESOLVED']
elif self.id == 'intel':
return ['-Wl,--allow-shlib-undefined']
# FIXME: implement other linkers
return []

Loading…
Cancel
Save