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 3BFB615800A for ; Tue, 15 Aug 2023 02:32:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AAB82BC020; Tue, 15 Aug 2023 02:32: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 263502BC020 for ; Tue, 15 Aug 2023 02:32: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 F114C340E10 for ; Tue, 15 Aug 2023 02:32:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F7CBF9F for ; Tue, 15 Aug 2023 02:32:08 +0000 (UTC) From: "Marco Leise" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marco Leise" Message-ID: <1691648173.2adabe76d14583809ed58fceec03bdee9d4a194a.mleise@gentoo> Subject: [gentoo-commits] repo/user/dlang:master commit in: eclass/ X-VCS-Repository: repo/user/dlang X-VCS-Files: eclass/dmd.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mleise X-VCS-Committer-Name: Marco Leise X-VCS-Revision: 2adabe76d14583809ed58fceec03bdee9d4a194a X-VCS-Branch: master Date: Tue, 15 Aug 2023 02:32: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: 009d8b56-577f-472f-b659-710bbf75d481 X-Archives-Hash: c7609c4317e50f8ecdbd94702ebd1ded commit: 2adabe76d14583809ed58fceec03bdee9d4a194a Author: Horodniceanu Andrei protonmail com> AuthorDate: Thu Aug 10 06:13:24 2023 +0000 Commit: Marco Leise gmx de> CommitDate: Thu Aug 10 06:16:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/user/dlang.git/commit/?id=2adabe76 dmd.eclass: specify compiler path when selfhosting Signed-off-by: Horodniceanu Andrei protonmail.com> eclass/dmd.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/dmd.eclass b/eclass/dmd.eclass index f972961..47fc51a 100644 --- a/eclass/dmd.eclass +++ b/eclass/dmd.eclass @@ -178,7 +178,7 @@ dmd_src_compile() { fi if dmd_ge 2.094; then einfo "Building dmd build script..." - dlang_compile_bin dmd/generated/build dmd/src/build.d + DC="${DMD}" dlang_compile_bin dmd/generated/build dmd/src/build.d einfo "Building dmd..." env VERBOSE=1 ${HOST_DMD}="${DMD}" CXX="$(tc-getCXX)" ${ENABLE_RELEASE}=1 ${LTO} dmd/generated/build DFLAGS="$(dlang_dmdw_dcflags)" dmd else