From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 165A458973 for ; Sat, 6 Feb 2016 09:02:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3B1121C00B; Sat, 6 Feb 2016 09:02:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 407F121C00B for ; Sat, 6 Feb 2016 09:02:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5669A340A42 for ; Sat, 6 Feb 2016 09:02:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 942BA8DC for ; Sat, 6 Feb 2016 09:02:53 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1454749365.84a1a4f59c4ff76fc2a2acb7e0417d0a91df7838.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd/systemd-228-r1.ebuild sys-apps/systemd/systemd-9999.ebuild X-VCS-Directories: sys-apps/systemd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 84a1a4f59c4ff76fc2a2acb7e0417d0a91df7838 X-VCS-Branch: master Date: Sat, 6 Feb 2016 09:02:53 +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: 34e6f46a-7ed5-45ea-9249-f4810f680ede X-Archives-Hash: 3de22496e34fba8e229bc329f650897f commit: 84a1a4f59c4ff76fc2a2acb7e0417d0a91df7838 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 6 08:11:04 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 6 09:02:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a1a4f5 sys-apps/systemd: Do not force ld.gold by default, #539998 sys-apps/systemd/systemd-228-r1.ebuild | 5 +++++ sys-apps/systemd/systemd-9999.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/sys-apps/systemd/systemd-228-r1.ebuild b/sys-apps/systemd/systemd-228-r1.ebuild index 1ca11da..a6448c1 100644 --- a/sys-apps/systemd/systemd-228-r1.ebuild +++ b/sys-apps/systemd/systemd-228-r1.ebuild @@ -168,6 +168,11 @@ multilib_src_configure() { # disable -flto since it is an optimization flag # and makes distcc less effective cc_cv_CFLAGS__flto=no + # disable -fuse-ld=gold since Gentoo supports explicit linker + # choice and forcing gold is undesired, #539998 + # ld.gold may collide with user's LDFLAGS, #545168 + # ld.gold breaks sparc, #573874 + cc_cv_LDFLAGS__Wl__fuse_ld_gold=no # Workaround for gcc-4.7, bug 554454. cc_cv_CFLAGS__Werror_shadow=no diff --git a/sys-apps/systemd/systemd-9999.ebuild b/sys-apps/systemd/systemd-9999.ebuild index f2cc0a9..1a89016 100644 --- a/sys-apps/systemd/systemd-9999.ebuild +++ b/sys-apps/systemd/systemd-9999.ebuild @@ -167,6 +167,11 @@ multilib_src_configure() { # disable -flto since it is an optimization flag # and makes distcc less effective cc_cv_CFLAGS__flto=no + # disable -fuse-ld=gold since Gentoo supports explicit linker + # choice and forcing gold is undesired, #539998 + # ld.gold may collide with user's LDFLAGS, #545168 + # ld.gold breaks sparc, #573874 + cc_cv_LDFLAGS__Wl__fuse_ld_gold=no # Workaround for gcc-4.7, bug 554454. cc_cv_CFLAGS__Werror_shadow=no