Disable Open MPI's vader byte transfer layer while running tests on 32-bit x86 platforms
to resolve FTBFS issue (BZ#1518038).
This commit is contained in:
parent
695af94ef9
commit
2708ef1b8f
14
fftw.spec
14
fftw.spec
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
Name: fftw
|
Name: fftw
|
||||||
Version: 3.3.5
|
Version: 3.3.5
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: A Fast Fourier Transform library
|
Summary: A Fast Fourier Transform library
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -407,6 +407,13 @@ do
|
|||||||
make %{?_smp_mflags} -C $ver check
|
make %{?_smp_mflags} -C $ver check
|
||||||
done
|
done
|
||||||
# MPI
|
# MPI
|
||||||
|
%if %{with openmpi}
|
||||||
|
%ifarch %{ix86}
|
||||||
|
# disable Open MPI's vader byte transfer layer while running tests on 32-bit x86 platforms
|
||||||
|
# as it is known to be troublesome <https://github.com/open-mpi/ompi/issues/4260>
|
||||||
|
export OMPI_MCA_btl="^vader"
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
for mpi in %{mpi_list}
|
for mpi in %{mpi_list}
|
||||||
do
|
do
|
||||||
module load mpi/${mpi}-%{_arch}
|
module load mpi/${mpi}-%{_arch}
|
||||||
@ -543,6 +550,11 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Nov 28 2017 Merlin Mathesius <mmathesi@redhat.com> - 3.3.5-8
|
||||||
|
- Disable Open MPI's vader byte transfer layer while running tests on 32-bit x86 platforms
|
||||||
|
as it is known to be troublesome <https://github.com/open-mpi/ompi/issues/4260>.
|
||||||
|
This resolves FTBFS issue (BZ#1518038).
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-7
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user