Skip to content

Commit 88e38bc

Browse files
authored
Merge pull request #5050 from jsquyres/pr/v2.x/remove-power7be-configure-block
v2.1.x: remove power7be configure block
2 parents e247acc + f645329 commit 88e38bc

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
@@ -53,6 +53,17 @@ included in the vX.Y.Z section and be denoted as:
5353
(** also appeared: A.B.C) -- indicating that this item was previously
5454
included in release version vA.B.C.
5555

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

README

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

151+
Platform Notes
152+
--------------
153+
154+
- ARM and POWER users may experience intermittent hangs when Open MPI
155+
is compiled with low optimization settings, due to an issue with our
156+
atomic list implementation. We recommend compiling with -O3
157+
optimization, both for performance reasons and to avoid this hang.
158+
159+
151160
Compiler Notes
152161
--------------
153162

configure.ac

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

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

0 commit comments

Comments
 (0)