File tree Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Original file line number Diff line number Diff 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+
56672.1.3 -- March, 2018
5768--------------------
5869
Original file line number Diff line number Diff 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+
151160Compiler Notes
152161--------------
153162
Original file line number Diff line number Diff 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)
9887OPAL_VAR_SCOPE_PUSH([CFLAGS_save])
You can’t perform that action at this time.
0 commit comments