Skip to content

Commit

Permalink
Error out of attempts for 32-bit builds
Browse files Browse the repository at this point in the history
PRRTE doesn't support 32-bit environments - for one thing, it
would require a 32-bit PMIx, and PMIx doesn't support such
environments either. So error out of configure in such cases.

Signed-off-by: Ralph Castain <rhc@pmix.org>
  • Loading branch information
rhc54 committed Oct 29, 2023
1 parent 9db9fdb commit 3e9a91f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,9 @@ AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(void *)
AS_IF([test "$ac_cv_sizeof_void_p" -eq 4],
[AC_MSG_WARN([PRRTE does not support 32 bit builds.])
AC_MSG_ERROR([Cannot continue])])
AC_CHECK_SIZEOF(size_t)

#
Expand Down

0 comments on commit 3e9a91f

Please sign in to comment.