Skip to content

Commit 6de8af0

Browse files
committed
configure: remove block on POWER 7/BE systems
We thought there was a silent data corruption issue on POWER 7/BE systems, so we blocked building on POWER 7/BE systems altogether. We later figured out that it was just data hangs -- not silent data corruption. So in hindsight, the configure block probably wasn't necessary -- but we didn't know it at the time. Regardless, the hangs have now been fixed, and we're removing the POWER 7/BE block in configure. For more detail on the entire saga, see open-mpi#4349 (comment). Signed-off-by: Jeff Squyres <[email protected]> (cherry picked from commit 3f0ccff)
1 parent b45f1ad commit 6de8af0

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

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)