diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-30 21:36:47 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-30 22:05:39 +0200 |
commit | 4be840a5784dace2ab79a3a5d39bca695bdbeece (patch) | |
tree | 1ee7ff71969719e25cc7475a1865fee4ca08a46d | |
parent | net-misc/python-x2go: drop old (diff) | |
download | gentoo-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>
-rw-r--r-- | eclass/mozconfig-v6.60.eclass | 5 |
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 |