PGI: use ar link wrapper on Windows

pull/5823/head
Michael Hirsch, Ph.D 5 years ago
parent caec875fe1
commit c8d380e4ef
No known key found for this signature in database
GPG Key ID: 6D23CDADAB0294F9
  1. 2
      mesonbuild/compilers/mixins/pgi.py
  2. 5
      mesonbuild/environment.py
  3. 16
      mesonbuild/linkers.py

@ -56,7 +56,7 @@ class PGICompiler:
def get_pic_args(self) -> typing.List[str]:
# PGI -fPIC is Linux only.
if self.compiler_type.is_linux_compiler():
if self.compiler_type.is_standard_compiler:
return ['-fPIC']
return []

@ -51,6 +51,7 @@ from .linkers import (
MSVCDynamicLinker,
OptlinkDynamicLinker,
PGIDynamicLinker,
PGIStaticLinker,
SolarisDynamicLinker,
XildAppleDynamicLinker,
XildLinuxDynamicLinker,
@ -1340,6 +1341,8 @@ class Environment:
elif isinstance(compiler, IntelClCCompiler):
# Intel has it's own linker that acts like microsoft's lib
linkers = ['xilib']
elif isinstance(compiler, (PGICCompiler, PGIFortranCompiler)) and mesonlib.is_windows():
linkers = [self.default_static_linker] # this is just a wrapper calling link/lib on Windows, keeping things simple.
else:
linkers = [self.default_static_linker]
popen_exceptions = {}
@ -1357,6 +1360,8 @@ class Environment:
return IntelVisualStudioLinker(linker, getattr(compiler, 'machine', None))
if '/OUT:' in out.upper() or '/OUT:' in err.upper():
return VisualStudioLinker(linker, getattr(compiler, 'machine', None))
if 'ar-Error-Unknown switch: --version' in err:
return PGIStaticLinker(linker)
if p.returncode == 0 and ('armar' in linker or 'armar.exe' in linker):
return ArmarLinker(linker)
if 'DMD32 D Compiler' in out or 'DMD64 D Compiler' in out:

@ -740,18 +740,30 @@ class PGIDynamicLinker(PosixDynamicLinkerMixin, DynamicLinker):
# PGI -shared is Linux only.
if mesonlib.is_windows():
return ['-Bdynamic', '-Mmakedll']
elif mesonlib.is_linux:
elif mesonlib.is_linux():
return ['-shared']
return []
def build_rpath_args(self, env: 'Environment', build_dir: str, from_dir: str,
rpath_paths: str, build_rpath: str,
install_rpath: str) -> typing.List[str]:
if env.machines[self.for_machine].is_windows():
if not env.machines[self.for_machine].is_windows():
return ['-R' + os.path.join(build_dir, p) for p in rpath_paths]
return []
class PGIStaticLinker(StaticLinker):
def __init__(self, exelist: typing.List[str]):
super().__init__(exelist)
self.id = 'ar'
self.std_args = ['-r']
def get_std_link_args(self) -> typing.List[str]:
return self.std_args
def get_output_args(self, target: str) -> typing.List[str]:
return [target]
class VisualStudioLikeLinkerMixin:
_BUILDTYPE_ARGS = {

Loading…
Cancel
Save