File tree 3 files changed +20
-11
lines changed 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:
53
53
(** also appeared: A.B.C) -- indicating that this item was previously
54
54
included in release version vA.B.C.
55
55
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
+
56
67
2.1.3 -- March, 2018
57
68
--------------------
58
69
Original file line number Diff line number Diff line change @@ -148,6 +148,15 @@ General notes
148
148
using the clang-4.0 system compiler. A workaround is to build
149
149
Open MPI using the GNU compiler.
150
150
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
+
151
160
Compiler Notes
152
161
--------------
153
162
Original file line number Diff line number Diff line change @@ -82,17 +82,6 @@ AS_IF([test "$host" != "$target"],
82
82
[AC_MSG_WARN([Cross-compile detected])
83
83
AC_MSG_WARN([Cross-compiling is only partially supported])
84
84
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
96
85
97
86
# AC_USE_SYSTEM_EXTENSIONS alters CFLAGS (e.g., adds -g -O2)
98
87
OPAL_VAR_SCOPE_PUSH([CFLAGS_save])
You can’t perform that action at this time.
0 commit comments