From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1809E158020 for ; Thu, 10 Nov 2022 07:55:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8AE0E097B; Thu, 10 Nov 2022 07:55:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D12F0E097B for ; Thu, 10 Nov 2022 07:55:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C73DB340F2D for ; Thu, 10 Nov 2022 07:54:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63C8F72C for ; Thu, 10 Nov 2022 07:54:58 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1668066893.85609bb43e013fa2f90ff1bbd29a96174b86e0b1.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 85609bb43e013fa2f90ff1bbd29a96174b86e0b1 X-VCS-Branch: master Date: Thu, 10 Nov 2022 07:54:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 85e46c9f-4eb5-4080-8368-f707c0c33bf0 X-Archives-Hash: b33d33ca31c77b3a9aa4e23a80117df7 commit: 85609bb43e013fa2f90ff1bbd29a96174b86e0b1 Author: Joonas Niilola gentoo org> AuthorDate: Thu Nov 10 07:54:29 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Nov 10 07:54:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85609bb4 dev-lang/spidermonkey: cover more scenarios with AS="$(tc-getCC) -c" Signed-off-by: Joonas Niilola gentoo.org> dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild b/dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild index edf248964440..4f58b769e17b 100644 --- a/dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-102.4.0.ebuild @@ -235,7 +235,6 @@ src_configure() { have_switched_compiler=yes fi AR=llvm-ar - AS="clang -c" CC=${CHOST}-clang CXX=${CHOST}-clang++ NM=llvm-nm @@ -260,6 +259,7 @@ src_configure() { # Ensure we use correct toolchain export HOST_CC="$(tc-getBUILD_CC)" export HOST_CXX="$(tc-getBUILD_CXX)" + export AS="$(tc-getCC) -c" tc-export CC CXX LD AR AS NM OBJDUMP RANLIB PKG_CONFIG cd "${MOZJS_BUILDDIR}" || die