diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-01-21 13:09:36 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-21 20:09:36 +0200 |
commit | 72486afd08d66d6323c2113739dcfff74813058b (patch) | |
tree | ba7ac44b91fc1324c53fb8db12b884fdefbb8249 /mesonbuild/compilers/compilers.py | |
parent | 20248fa919c5a2e4f9ac1f88f087862da52abfbb (diff) | |
download | meson-72486afd08d66d6323c2113739dcfff74813058b.zip meson-72486afd08d66d6323c2113739dcfff74813058b.tar.gz meson-72486afd08d66d6323c2113739dcfff74813058b.tar.bz2 |
Add PGI C and C++ compilers (#4803)
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 52 |
1 files changed, 45 insertions, 7 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 758b1c3..016e704 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -14,6 +14,7 @@ import abc, contextlib, enum, os.path, re, tempfile, shlex import subprocess +from typing import List from ..linkers import StaticLinker from .. import coredata @@ -166,6 +167,13 @@ msvc_buildtype_args = {'plain': [], 'custom': [], } +pgi_buildtype_args = {'plain': [], + 'debug': [], + 'debugoptimized': [], + 'release': [], + 'minsize': [], + 'custom': [], + } apple_buildtype_linker_args = {'plain': [], 'debug': [], 'debugoptimized': [], @@ -197,6 +205,13 @@ ccrx_buildtype_linker_args = {'plain': [], 'minsize': [], 'custom': [], } +pgi_buildtype_linker_args = {'plain': [], + 'debug': [], + 'debugoptimized': [], + 'release': [], + 'minsize': [], + 'custom': [], + } msvc_buildtype_linker_args = {'plain': [], 'debug': [], @@ -1601,7 +1616,7 @@ class GnuCompiler(GnuLikeCompiler): class PGICompiler: - def __init__(self, compiler_type): + def __init__(self, compiler_type=None): self.id = 'pgi' self.compiler_type = compiler_type @@ -1610,18 +1625,41 @@ class PGICompiler: '2': default_warn_args, '3': default_warn_args} - def get_module_incdir_args(self): - return ('-module', ) + def get_module_incdir_args(self) -> List[str]: + return ('-module', ) + + def get_no_warn_args(self) -> List[str]: + return ['-silent'] - def get_no_warn_args(self): - return ['-silent'] + def openmp_flags(self) -> List[str]: + return ['-mp'] - def openmp_flags(self): - return ['-mp'] + def get_buildtype_args(self, buildtype: str) -> List[str]: + return pgi_buildtype_args[buildtype] + + def get_buildtype_linker_args(self, buildtype: str) -> List[str]: + return pgi_buildtype_linker_args[buildtype] + + def get_optimization_args(self, optimization_level: str) -> List[str]: + return clike_optimization_args[optimization_level] + + def get_debug_args(self, is_debug: bool) -> List[str]: + return clike_debug_args[is_debug] + + def compute_parameters_with_absolute_paths(self, parameter_list: List[str], build_dir: str): + for idx, i in enumerate(parameter_list): + if i[:2] == '-I' or i[:2] == '-L': + parameter_list[idx] = i[:2] + os.path.normpath(os.path.join(build_dir, i[2:])) def get_allow_undefined_link_args(self): return [] + def get_dependency_gen_args(self, outtarget, outfile): + return [] + + def get_always_args(self): + return [] + class ElbrusCompiler(GnuCompiler): # Elbrus compiler is nearly like GCC, but does not support |