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 2929C158004 for ; Sat, 25 Nov 2023 00:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE7DE2BC018; Sat, 25 Nov 2023 00:59:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C21DC2BC018 for ; Sat, 25 Nov 2023 00:59:19 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED24633BEB9 for ; Sat, 25 Nov 2023 00:59:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6888E13B3 for ; Sat, 25 Nov 2023 00:59:17 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1700873954.6015a94c17c9d066ba3c14380aec8cb176de7aa5.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/promu/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/promu/promu-0.15.0.ebuild dev-util/promu/promu-9999.ebuild X-VCS-Directories: dev-util/promu/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 6015a94c17c9d066ba3c14380aec8cb176de7aa5 X-VCS-Branch: master Date: Sat, 25 Nov 2023 00:59:17 +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: e2baba87-bf08-4622-8374-f757d613f596 X-Archives-Hash: 1faf62307df14bc21a3a4697b072cfc4 commit: 6015a94c17c9d066ba3c14380aec8cb176de7aa5 Author: Zac Medico gentoo org> AuthorDate: Wed Nov 22 16:57:39 2023 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Nov 25 00:59:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6015a94c dev-util/promu: Disable pie for x86 Bug: https://bugs.gentoo.org/917577 Signed-off-by: Zac Medico gentoo.org> dev-util/promu/promu-0.15.0.ebuild | 4 ++++ dev-util/promu/promu-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-util/promu/promu-0.15.0.ebuild b/dev-util/promu/promu-0.15.0.ebuild index 9e01f1de9925..9eaef41e51d3 100644 --- a/dev-util/promu/promu-0.15.0.ebuild +++ b/dev-util/promu/promu-0.15.0.ebuild @@ -34,6 +34,10 @@ src_unpack() { } src_compile() { + if use x86; then + #917577 pie breaks build on x86 + GOFLAGS=${GOFLAGS//-buildmode=pie} + fi emake build } diff --git a/dev-util/promu/promu-9999.ebuild b/dev-util/promu/promu-9999.ebuild index 36b0779a8ac2..6adaa60327fe 100644 --- a/dev-util/promu/promu-9999.ebuild +++ b/dev-util/promu/promu-9999.ebuild @@ -34,6 +34,10 @@ src_unpack() { } src_compile() { + if use x86; then + #917577 pie breaks build on x86 + GOFLAGS=${GOFLAGS//-buildmode=pie} + fi emake build }