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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A15B4138334 for ; Mon, 3 Sep 2018 11:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88AB9E07A7; Mon, 3 Sep 2018 11:36:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5CB38E07A7 for ; Mon, 3 Sep 2018 11:36:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EEA2335C2B for ; Mon, 3 Sep 2018 11:36:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D65123A9 for ; Mon, 3 Sep 2018 11:36:47 +0000 (UTC) From: "Keri Harris" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Keri Harris" Message-ID: <1535974593.5e188b0f18e9db395ae0e730ec25d14a8c4d18a7.keri@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gprolog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gprolog/gprolog-1.4.5.ebuild X-VCS-Directories: dev-lang/gprolog/ X-VCS-Committer: keri X-VCS-Committer-Name: Keri Harris X-VCS-Revision: 5e188b0f18e9db395ae0e730ec25d14a8c4d18a7 X-VCS-Branch: master Date: Mon, 3 Sep 2018 11:36:47 +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-Archives-Salt: 767bb6ff-a1fd-4be9-977c-a2360470c403 X-Archives-Hash: d22a0bc5bf420792d7743a6192d858ab commit: 5e188b0f18e9db395ae0e730ec25d14a8c4d18a7 Author: Keri Harris gentoo org> AuthorDate: Mon Sep 3 11:36:17 2018 +0000 Commit: Keri Harris gentoo org> CommitDate: Mon Sep 3 11:36:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e188b0f dev-lang/gprolog: disable PIE as gplc generates native ASM Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-lang/gprolog/gprolog-1.4.5.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-lang/gprolog/gprolog-1.4.5.ebuild b/dev-lang/gprolog/gprolog-1.4.5.ebuild index 55a9c9558bb..7e7d7363ac9 100644 --- a/dev-lang/gprolog/gprolog-1.4.5.ebuild +++ b/dev-lang/gprolog/gprolog-1.4.5.ebuild @@ -34,6 +34,11 @@ src_configure() { append-flags -fno-strict-aliasing use debug && append-flags -DDEBUG + if tc-enables-pie; then + # gplc generates its own native ASM; disable PIE + append-ldflags -no-pie + fi + cd "${S}"/src econf \ CFLAGS_MACHINE="${CFLAGS_MACHINE}" \