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 7F89215800A for ; Thu, 31 Aug 2023 01:15:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A22112BC014; Thu, 31 Aug 2023 01:15:49 +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 859172BC014 for ; Thu, 31 Aug 2023 01:15:49 +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 4796A335D74 for ; Thu, 31 Aug 2023 01:15:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 985F1B84 for ; Thu, 31 Aug 2023 01:15:46 +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: <1693444544.7c2e00bf7c5f2ea52c2687e39cad70344c8596e2.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: 7c2e00bf7c5f2ea52c2687e39cad70344c8596e2 X-VCS-Branch: master Date: Thu, 31 Aug 2023 01:15:46 +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: 34b48e71-595e-4e52-8d5f-aae99b08f72e X-Archives-Hash: bb3aef9b3c7dbb1083ef9ccdc2c18ea2 commit: 7c2e00bf7c5f2ea52c2687e39cad70344c8596e2 Author: Alfred Persson Forsberg catcream org> AuthorDate: Wed Aug 30 11:01:15 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 31 01:15:44 2023 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=7c2e00bf fix x86 in LLVM targets check previously it would match CTARGET for amd64*. Signed-off-by: Alfred Persson Forsberg catcream.org> Closes: https://github.com/gentoo/crossdev/pull/11 Signed-off-by: Sam James gentoo.org> crossdev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 29adbeb..c1b59de 100755 --- a/crossdev +++ b/crossdev @@ -1730,7 +1730,7 @@ if ! ex_fast ; then llvm_arch="" case ${CTARGET} in - amd64*) llvm_arch="X86" ;; + x86*) llvm_arch="X86" ;; arm*) llvm_arch="ARM" ;; aarch64*) llvm_arch="AArch64" ;; riscv*) llvm_arch="RISCV" ;;