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 95D81158086 for ; Fri, 24 Dec 2021 22:12:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 586C12BC01A; Fri, 24 Dec 2021 22:12:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5F6502BC01A for ; Fri, 24 Dec 2021 22:12:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7CF07343154 for ; Fri, 24 Dec 2021 22:12:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0CA901BF for ; Fri, 24 Dec 2021 22:12:48 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1640383956.8ba0d090dedc66de57363af399b287494aa9253d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/libadalang/libadalang-22.0.0.ebuild X-VCS-Directories: dev-ada/libadalang/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8ba0d090dedc66de57363af399b287494aa9253d X-VCS-Branch: master Date: Fri, 24 Dec 2021 22:12:48 +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: 61a5b0a3-a7e8-4a0c-b842-0e0a2943a724 X-Archives-Hash: 3161a6a5ddb2bbad7125f5fad4b4dc66 commit: 8ba0d090dedc66de57363af399b287494aa9253d Author: Alfredo Tupone gentoo org> AuthorDate: Fri Dec 24 22:12:36 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri Dec 24 22:12:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba0d090 dev-ada/libadalang: use LDFLAGS Closes: https://bugs.gentoo.org/829869 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ada/libadalang/libadalang-22.0.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-ada/libadalang/libadalang-22.0.0.ebuild b/dev-ada/libadalang/libadalang-22.0.0.ebuild index 5cdedddef0be..fb13c72f8afe 100644 --- a/dev-ada/libadalang/libadalang-22.0.0.ebuild +++ b/dev-ada/libadalang/libadalang-22.0.0.ebuild @@ -67,7 +67,7 @@ src_compile() { ${EPYTHON} manage.py build -v \ --build-mode "prod" \ -j$(makeopts_jobs) \ - --gargs "-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS}" \ + --gargs "-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} -largs:C ${LDFLAGS}" \ --library-types=${libType} || die GPR_PROJECT_PATH="${S}"/build \ gprbuild -P contrib/highlight/highlight.gpr \ @@ -76,6 +76,7 @@ src_compile() { -XLIBRARY_TYPE=relocatable \ -XXMLADA_BUILD=relocatable \ -cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} \ + -largs:C ${LDFLAGS} \ || die }