diff options
author | Magnus Lång <[email protected]> | 2017-03-30 11:23:44 +0200 |
---|---|---|
committer | Magnus Lång <[email protected]> | 2017-03-30 22:38:15 +0200 |
commit | 14e01bd006967d46453dd175f0e4758c277c09ff (patch) | |
tree | c5659bbfe88a7c6f29d57f4321a657cc4c6f8ced /erts/configure.in | |
parent | 5da9e0ab5cb96f2cb37e534b2c1a55c0c2c9783c (diff) | |
download | otp-14e01bd006967d46453dd175f0e4758c277c09ff.tar.gz otp-14e01bd006967d46453dd175f0e4758c277c09ff.tar.bz2 otp-14e01bd006967d46453dd175f0e4758c277c09ff.zip |
Complete the list of ./configure ARCH adjustments
Also remove i386 clause, as ARCH can never have that value.
Diffstat (limited to 'erts/configure.in')
-rw-r--r-- | erts/configure.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/erts/configure.in b/erts/configure.in index 7c6f4b163c..344b466ce7 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -642,10 +642,6 @@ dnl Ditto between ultrasparc and sparc64. dnl AC_MSG_CHECKING(whether compilation mode forces ARCH adjustment) case "$ARCH-$ac_cv_sizeof_void_p" in -i386-8) - AC_MSG_RESULT(yes: adjusting ARCH=x86 to ARCH=amd64) - ARCH=amd64 - ;; x86-8) AC_MSG_RESULT(yes: adjusting ARCH=x86 to ARCH=amd64) ARCH=amd64 @@ -666,6 +662,14 @@ ppc64-4) AC_MSG_RESULT(yes: adjusting ARCH=ppc64 to ARCH=ppc) ARCH=ppc ;; +ppc-8) + AC_MSG_RESULT(yes: adjusting ARCH=ppc to ARCH=ppc64) + ARCH=ppc64 + ;; +arm-8) + AC_MSG_RESULT(yes: adjusting ARCH=arm to ARCH=noarch) + ARCH=noarch + ;; *) AC_MSG_RESULT(no) ;; |