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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A420515838C for ; Fri, 26 Jan 2024 09:31:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9B06E29D0; Fri, 26 Jan 2024 09:31:11 +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 C2A80E29D0 for ; Fri, 26 Jan 2024 09:31:11 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AE1473433D2 for ; Fri, 26 Jan 2024 09:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F15A9EC0 for ; Fri, 26 Jan 2024 09:31:08 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1706261446.a5daa83d8dd73d73035403aa57b24f7e057e4e19.sam@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: / X-VCS-Repository: proj/crossdev X-VCS-Files: crossdev X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a5daa83d8dd73d73035403aa57b24f7e057e4e19 X-VCS-Branch: master Date: Fri, 26 Jan 2024 09:31:08 +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: abcb5e62-f6b7-42c5-88b5-6c0f509ea3b7 X-Archives-Hash: 646a4cc063c41fd017ca367685d28787 commit: a5daa83d8dd73d73035403aa57b24f7e057e4e19 Author: Alfred Persson Forsberg catcream org> AuthorDate: Fri Jan 26 00:05:30 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 26 09:30:46 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=a5daa83d llvm.conf: set AS="clang -c" instead of llvm-as Bug: https://bugs.gentoo.org/680652 Signed-off-by: Alfred Persson Forsberg catcream.org> Closes: https://github.com/gentoo/crossdev/pull/18 Signed-off-by: Sam James gentoo.org> crossdev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 8788747..7a5ad37 100755 --- a/crossdev +++ b/crossdev @@ -1594,7 +1594,7 @@ esac if [[ "${LLVM}" == "yes" ]] ; then cat <<-EOF > "${CONFIGROOT}/env/${CROSSDEV_OVERLAY_CATEGORY}/llvm.conf" AR=llvm-ar - AS=llvm-as + AS="${CTARGET}-clang -c" CC="${CTARGET}-clang" CROSS_COMPILE="${CTARGET}-" CXX="${CTARGET}-clang++"