Skip to content

Commit 485ae5d

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 #4349 (comment). Signed-off-by: Jeff Squyres <[email protected]> (cherry picked from commit 3f0ccff)
1 parent be0843e commit 485ae5d

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
@@ -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)