diff options
author | Ned Deily <nad@python.org> | 2021-12-07 02:35:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 02:35:50 (GMT) |
commit | ddbab69b6d44085564a9b5022b96b002a52b2f2b (patch) | |
tree | 1b0d2701150a6ad2042972c9b178c1b157efa187 /configure | |
parent | c5c365220ed2c867fe81078f70b827de22db2ee6 (diff) | |
download | cpython-ddbab69b6d44085564a9b5022b96b002a52b2f2b.zip cpython-ddbab69b6d44085564a9b5022b96b002a52b2f2b.tar.gz cpython-ddbab69b6d44085564a9b5022b96b002a52b2f2b.tar.bz2 |
bpo-45798: Let libmpdec decide which archs to build on macOS as done previously. (GH-29949)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 2 insertions, 14 deletions
@@ -11815,21 +11815,9 @@ esac libmpdec_machine=unknown if test "$libmpdec_system" = Darwin; then - case $MACOSX_DEFAULT_ARCH in #( - i386) : - libmpdec_machine=ansi32 ;; #( - ppc) : - libmpdec_machine=ansi32 ;; #( - x86_64) : - libmpdec_machine=x64 ;; #( - ppc64) : - libmpdec_machine=ansi64 ;; #( - arm64) : - libmpdec_machine=ansi64 ;; #( - *) : + # universal here means: build libmpdec with the same arch options + # the python interpreter was built with libmpdec_machine=universal - ;; -esac elif test $ac_cv_sizeof_size_t -eq 8; then if test "$ac_cv_gcc_asm_for_x64" = yes; then libmpdec_machine=x64 |