Skip to content

Commit d8cd4fa

Browse files
authored
Merge pull request #5052 from jsquyres/pr/v3.1.x/remove-power7be-configure-block
v3.1.x: remove power7be configure block
2 parents 678afbe + d0ddf0d commit d8cd4fa

File tree

3 files changed

+20
-11
lines changed

3 files changed

+20
-11
lines changed

NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,17 @@ included in the vX.Y.Z section and be denoted as:
5555
(** also appeared: A.B.C) -- indicating that this item was previously
5656
included in release version vA.B.C.
5757

58+
3.1.1 -- TBD
59+
------------
60+
61+
Bug fixes/minor improvements:
62+
- Disable the POWER 7/BE block in configure. Note that POWER 7/BE is
63+
still not a supported platform, but it is no longer automatically
64+
disabled. See
65+
https://github.com/open-mpi/ompi/issues/4349#issuecomment-374970982
66+
for more information.
67+
68+
5869
3.1.0 -- March, 2018
5970
----------------------
6071

README

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,15 @@ General notes
140140
using the clang-4.0 system compiler. A workaround is to build
141141
Open MPI using the GNU compiler.
142142

143+
Platform Notes
144+
--------------
145+
146+
- ARM and POWER users may experience intermittent hangs when Open MPI
147+
is compiled with low optimization settings, due to an issue with our
148+
atomic list implementation. We recommend compiling with -O3
149+
optimization, both for performance reasons and to avoid this hang.
150+
151+
143152
Compiler Notes
144153
--------------
145154

configure.ac

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -84,17 +84,6 @@ AS_IF([test "$host" != "$target"],
8484
[AC_MSG_WARN([Cross-compile detected])
8585
AC_MSG_WARN([Cross-compiling is only partially supported])
8686
AC_MSG_WARN([Proceed at your own risk!])])
87-
# Check for architectures that we explicitly no longer support
88-
case "${host}" in
89-
powerpc-*|powerpc64-*|ppc-*)
90-
AC_MSG_ERROR([Big endian PPC is no longer supported.])
91-
;;
92-
esac
93-
case "${target}" in
94-
powerpc-*|powerpc64-*|ppc-*)
95-
AC_MSG_ERROR([Big endian PPC is no longer supported.])
96-
;;
97-
esac
9887

9988
# AC_USE_SYSTEM_EXTENSIONS alters CFLAGS (e.g., adds -g -O2)
10089
OPAL_VAR_SCOPE_PUSH([CFLAGS_save])

0 commit comments

Comments
 (0)