1
1

Merge pull request #5034 from jsquyres/pr/configure-remove-power7be-block

configure: remove POWER 7/BE block
Этот коммит содержится в:
Jeff Squyres 2018-04-10 13:23:14 -04:00 коммит произвёл GitHub
родитель 3a36dbe2b5 3da2cd4bde
Коммит 82cb8ab703
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 13 удалений

7
NEWS
Просмотреть файл

@ -69,9 +69,12 @@ Master (not on release branches yet)
true when using SLURM, as it improves interoperability with SLURM's signal
propagation tools. By default it is set to false, except for Cray XC systems.
- Remove IB XRC support from the OpenIB BTL due to lack of support.
- Remove support for big endian PowerPC.
- Remove support for XL compilers older than v13.1
- Fix rank-by algorithms to properly rank by object and span
- Disable the POWER 7/BE block in configure. Note that POWER 7/BE is
still not a supported platform, but it is no longer automatically
disabled. See
https://github.com/open-mpi/ompi/issues/4349#issuecomment-374970982
for more information.
3.0.1 -- March, 2018
----------------------

Просмотреть файл

@ -84,17 +84,6 @@ AS_IF([test "$host" != "$target"],
[AC_MSG_WARN([Cross-compile detected])
AC_MSG_WARN([Cross-compiling is only partially supported])
AC_MSG_WARN([Proceed at your own risk!])])
# Check for architectures that we explicitly no longer support
case "${host}" in
powerpc-*|powerpc64-*|ppc-*)
AC_MSG_ERROR([Big endian PPC is no longer supported.])
;;
esac
case "${target}" in
powerpc-*|powerpc64-*|ppc-*)
AC_MSG_ERROR([Big endian PPC is no longer supported.])
;;
esac
# AC_USE_SYSTEM_EXTENSIONS alters CFLAGS (e.g., adds -g -O2)
OPAL_VAR_SCOPE_PUSH([CFLAGS_save])