summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2018-09-30 21:36:47 +0200
committerThomas Deutschmann <whissi@gentoo.org>2018-09-30 22:05:39 +0200
commit4be840a5784dace2ab79a3a5d39bca695bdbeece (patch)
tree1ee7ff71969719e25cc7475a1865fee4ca08a46d /eclass/mozconfig-v6.60.eclass
parentnet-misc/python-x2go: drop old (diff)
downloadgentoo-4be840a5784dace2ab79a3a5d39bca695bdbeece.tar.gz
gentoo-4be840a5784dace2ab79a3a5d39bca695bdbeece.tar.bz2
gentoo-4be840a5784dace2ab79a3a5d39bca695bdbeece.zip
mozconfig-v6.60.eclass: disable elf-hack when USE=clang
Bug: https://bugs.gentoo.org/667216 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'eclass/mozconfig-v6.60.eclass')
-rw-r--r--eclass/mozconfig-v6.60.eclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/mozconfig-v6.60.eclass b/eclass/mozconfig-v6.60.eclass
index 42a693b5e108..6e6b0249bbae 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