diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-10-31 23:22:37 -0400 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-10-31 23:22:37 -0400 |
commit | 9c1bab67afad3933a08b24a846a7e0d255ccb5e2 (patch) | |
tree | 0d3cfb984a921ae2de253d93b520dea937877cc8 /mesonbuild/environment.py | |
parent | 025e11c9a72f313c6fa667e085b1de0e55a38781 (diff) | |
download | meson-9c1bab67afad3933a08b24a846a7e0d255ccb5e2.zip meson-9c1bab67afad3933a08b24a846a7e0d255ccb5e2.tar.gz meson-9c1bab67afad3933a08b24a846a7e0d255ccb5e2.tar.bz2 |
bugfix: fortran compiler assertionerror from 0c22798
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 99428c7..b7629c8 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -1151,8 +1151,7 @@ class Environment: compiler, for_machine, 'pgi', PGIFortranCompiler.LINKER_PREFIX, version=version) return PGIFortranCompiler( - compiler, version, for_machine, is_cross, - self.machines[for_machine], exe_wrap, + compiler, version, for_machine, is_cross, info, exe_wrap, full_version=full_version, linker=linker) if 'flang' in out or 'clang' in out: |