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 28A97138334 for ; Sun, 30 Sep 2018 20:06:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 275E6E0871; Sun, 30 Sep 2018 20:06:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 F1547E0871 for ; Sun, 30 Sep 2018 20:05:59 +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 B7778335D08 for ; Sun, 30 Sep 2018 20:05:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C88213AB for ; Sun, 30 Sep 2018 20:05:56 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1538337939.4be840a5784dace2ab79a3a5d39bca695bdbeece.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/mozconfig-v6.60.eclass X-VCS-Directories: eclass/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 4be840a5784dace2ab79a3a5d39bca695bdbeece X-VCS-Branch: master Date: Sun, 30 Sep 2018 20:05:56 +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: 0c2fb98e-0b55-47cd-9809-610f208b334f X-Archives-Hash: 40a395521d6fefc8e97d068857109980 commit: 4be840a5784dace2ab79a3a5d39bca695bdbeece Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Sep 30 19:36:47 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Sep 30 20:05:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be840a5 mozconfig-v6.60.eclass: disable elf-hack when USE=clang Bug: https://bugs.gentoo.org/667216 Signed-off-by: Thomas Deutschmann gentoo.org> eclass/mozconfig-v6.60.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/mozconfig-v6.60.eclass b/eclass/mozconfig-v6.60.eclass index 42a693b5e10..6e6b0249bba 100644 --- a/eclass/mozconfig-v6.60.eclass +++ b/eclass/mozconfig-v6.60.eclass @@ -331,7 +331,10 @@ mozconfig_config() { mozconfig_use_with system-harfbuzz mozconfig_use_with system-harfbuzz system-graphite2 - if use arm ; then + if use clang ; then + # https://bugzilla.mozilla.org/show_bug.cgi?id=1423822 + mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack + elif use arm ; then mozconfig_annotate 'elf-hack is broken on arm' --disable-elf-hack fi