From ee600ab3d0c1fc84d08b4a5648b438b5c4aa3293 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 16 Jun 2020 23:53:38 +0000 Subject: tl-update-auto git-svn-id: svn://tug.org/texlive/trunk@55573 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/utils/asymptote/config.guess | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Build/source/utils/asymptote/config.guess') diff --git a/Build/source/utils/asymptote/config.guess b/Build/source/utils/asymptote/config.guess index 11fda528bc7..92bfc33e296 100755 --- a/Build/source/utils/asymptote/config.guess +++ b/Build/source/utils/asymptote/config.guess @@ -1095,7 +1095,17 @@ EOF echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + set_cc_for_build + LIBCABI=$LIBC + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_X32 >/dev/null + then + LIBCABI="$LIBC"x32 + fi + fi + echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI" exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" -- cgit v1.2.3