mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
bpo-46263: Don't use MULTIARCH on FreeBSD (#30410)
This commit is contained in:
parent
91bc6f9615
commit
cae55542d2
3 changed files with 24 additions and 7 deletions
17
configure
vendored
17
configure
vendored
|
|
@ -6091,10 +6091,20 @@ $as_echo "none" >&6; }
|
|||
fi
|
||||
rm -f conftest.c conftest.out
|
||||
|
||||
if test x$PLATFORM_TRIPLET != xdarwin; then
|
||||
MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||
fi
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for multiarch" >&5
|
||||
$as_echo_n "checking for multiarch... " >&6; }
|
||||
case $ac_sys_system in #(
|
||||
Darwin*) :
|
||||
MULTIARCH="" ;; #(
|
||||
FreeBSD*) :
|
||||
MULTIARCH="" ;; #(
|
||||
*) :
|
||||
MULTIARCH=$($CC --print-multiarch 2>/dev/null)
|
||||
;;
|
||||
esac
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MULTIARCH" >&5
|
||||
$as_echo "$MULTIARCH" >&6; }
|
||||
|
||||
if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
|
||||
if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
|
||||
|
|
@ -6104,6 +6114,7 @@ elif test x$PLATFORM_TRIPLET != x && test x$MULTIARCH = x; then
|
|||
MULTIARCH=$PLATFORM_TRIPLET
|
||||
fi
|
||||
|
||||
|
||||
if test x$MULTIARCH != x; then
|
||||
MULTIARCH_CPPFLAGS="-DMULTIARCH=\\\"$MULTIARCH\\\""
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue