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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8FEAC158046 for ; Tue, 15 Oct 2024 07:13:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC6C0E07EE; Tue, 15 Oct 2024 07:13:58 +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 B0C2CE07EE for ; Tue, 15 Oct 2024 07:13:58 +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 B867D342FE5 for ; Tue, 15 Oct 2024 07:13:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 267941DD1 for ; Tue, 15 Oct 2024 07:13:56 +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: <1728976432.467cff30d0a828868dcdc98f49afcd7d136234d5.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: 467cff30d0a828868dcdc98f49afcd7d136234d5 X-VCS-Branch: master Date: Tue, 15 Oct 2024 07:13:56 +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: 73032bc2-13f3-4837-8b08-34131ba455a3 X-Archives-Hash: 6156e77e672ae596e32ec35af19b5050 commit: 467cff30d0a828868dcdc98f49afcd7d136234d5 Author: Michal Rostecki protonmail com> AuthorDate: Mon Oct 7 20:01:11 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Oct 15 07:13:52 2024 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=467cff30 crossdev: Use libunwind and libc++ in LLVM environments Avoid build issues on cross environments using musl and LLVM by using libunwind and libc++ explicitly in the clang configuration. Otherwise, clang expects GCC libunwind and libstdc++. These flags were not set explicitly in the clang configuration, because LLVM profiles were setting them, but that's not the case anymore[0]. [0] https://github.com/gentoo/gentoo/commit/5e5c9d5c524871f5af260557dbd2962b8eec5087 Bug: https://bugs.gentoo.org/941140 Signed-off-by: Michal Rostecki protonmail.com> Closes: https://github.com/gentoo/crossdev/pull/23 Signed-off-by: Sam James gentoo.org> crossdev | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crossdev b/crossdev index 1b53fd2..176bb71 100755 --- a/crossdev +++ b/crossdev @@ -1736,7 +1736,8 @@ if [[ "${LLVM}" == "yes" ]]; then --rtlib=compiler-rt --sysroot=/usr/${CTARGET} --target=${CTARGET} - --unwindlib=none + --unwindlib=libunwind + --stdlib=libc++ -fuse-ld=lld EOF # Workaround until LLVM libc supports dynamic linking and SSP