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 F25EF58973 for ; Tue, 2 Feb 2016 18:35:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7868B21C116; Tue, 2 Feb 2016 18:35:34 +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 E053421C111 for ; Tue, 2 Feb 2016 18:35:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2523340DAC for ; Tue, 2 Feb 2016 18:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 456FBEE3 for ; Tue, 2 Feb 2016 18:35:28 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1454438103.a0ab6659af2fb224aa1d5957d48e3afa37a42eae.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: a0ab6659af2fb224aa1d5957d48e3afa37a42eae X-VCS-Branch: master Date: Tue, 2 Feb 2016 18:35:28 +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: e94f9180-3b4f-4e7b-9d42-27e772ae282a X-Archives-Hash: 0dd9af05a70326abf0af5cc1ca67d02b commit: a0ab6659af2fb224aa1d5957d48e3afa37a42eae Author: Davide Pesavento gentoo org> AuthorDate: Tue Jan 19 17:08:48 2016 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Feb 2 18:35:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0ab6659 qt5-build.eclass: add -no-ltcg for 5.6 and later (cherry picked from proj/qt commit a72b03f11e9d003e26607a1c80457bbf574fe3d7) eclass/qt5-build.eclass | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index db08161..270ab13 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -583,13 +583,15 @@ qt5_base_configure() { -no-icu -no-fontconfig -no-dbus - # don't strip + # let portage handle stripping -no-strip - # precompiled headers are not that useful for us - # and cause problems on hardened, so turn them off + # precompiled headers can cause problems on hardened, so turn them off -no-pch + # link-time code generation is not something we want to enable by default + $([[ ${QT5_MINOR_VERSION} -ge 6 ]] && echo -no-ltcg) + # reduced relocations cause major breakage on at least arm and ppc, so # don't specify anything and let the configure figure out if they are # supported; see also https://bugreports.qt.io/browse/QTBUG-36129