SHA256
1
0
forked from pool/mvapich2

Accepting request 822460 from home:eeich:branches:science:HPC

- Add build support for gcc8/9/10 to HPC build (bsc#1174439).

OBS-URL: https://build.opensuse.org/request/show/822460
OBS-URL: https://build.opensuse.org/package/show/science:HPC/mvapich2?expand=0&rev=73
This commit is contained in:
Christian Goll 2020-07-23 18:48:35 +00:00 committed by Git OBS Bridge
parent 9f03d17ebe
commit a52bb4a6a5
2 changed files with 89 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jul 23 15:53:00 UTC 2020 - Egbert Eich <eich@suse.com>
- Add build support for gcc8/9/10 to HPC build (bsc#1174439).
-------------------------------------------------------------------
Wed Jun 3 08:13:07 UTC 2020 - Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>

View File

@ -113,6 +113,90 @@ ExclusiveArch: do_not_build
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu8-hpc"
%define compiler_family gnu
%define c_f_ver 8
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu8-hpc-testsuite"
%define compiler_family gnu
%define c_f_ver 8
%define testsuite 1
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu8-hpc-psm"
%define compiler_family gnu
%define c_f_ver 8
%define build_flavor psm
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu8-hpc-psm2"
%define compiler_family gnu
%define c_f_ver 8
%define build_flavor psm2
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu9-hpc"
%define compiler_family gnu
%define c_f_ver 9
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu9-hpc-testsuite"
%define compiler_family gnu
%define c_f_ver 9
%define testsuite 1
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu9-hpc-psm"
%define compiler_family gnu
%define c_f_ver 9
%define build_flavor psm
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu9-hpc-psm2"
%define compiler_family gnu
%define c_f_ver 9
%define build_flavor psm2
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu10-hpc"
%define compiler_family gnu
%define c_f_ver 10
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu10-hpc-testsuite"
%define compiler_family gnu
%define c_f_ver 10
%define testsuite 1
%define build_flavor verbs
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu10-hpc-psm"
%define compiler_family gnu
%define c_f_ver 10
%define build_flavor psm
%{bcond_without hpc}
%endif
%if "%flavor" == "gnu10-hpc-psm2"
%define compiler_family gnu
%define c_f_ver 10
%define build_flavor psm2
%{bcond_without hpc}
%endif
%if "%{build_flavor}" != "verbs"
%define pack_suff %{?build_flavor:-%{build_flavor}}
%endif