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 3CEAB1382C5 for ; Wed, 10 Jun 2020 05:17:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57D39E0900; Wed, 10 Jun 2020 05:17:08 +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 38ED2E0900 for ; Wed, 10 Jun 2020 05:17:08 +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 A17B634F1E1 for ; Wed, 10 Jun 2020 05:17:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43EEC28F for ; Wed, 10 Jun 2020 05:17:04 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1591766209.46b1048c257e1074ddaaaaa6ee88ffbac431a6d7.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/efl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/efl/efl-1.24.2.ebuild X-VCS-Directories: dev-libs/efl/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 46b1048c257e1074ddaaaaa6ee88ffbac431a6d7 X-VCS-Branch: master Date: Wed, 10 Jun 2020 05:17:04 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ddd7d508-1ad1-4f74-9bc9-6f1fb55bca52 X-Archives-Hash: f220330777ebaf094120b7f2e624b171 commit: 46b1048c257e1074ddaaaaa6ee88ffbac431a6d7 Author: Joonas Niilola gentoo org> AuthorDate: Wed Jun 10 05:16:11 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jun 10 05:16:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b1048c dev-libs/efl: fix arm[-neon] CPU builds, #722552 Closes: https://bugs.gentoo.org/722552 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/efl/efl-1.24.2.ebuild | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/dev-libs/efl/efl-1.24.2.ebuild b/dev-libs/efl/efl-1.24.2.ebuild index 397a184692d..d7832a453ac 100644 --- a/dev-libs/efl/efl-1.24.2.ebuild +++ b/dev-libs/efl/efl-1.24.2.ebuild @@ -12,11 +12,12 @@ SRC_URI="https://download.enlightenment.org/rel/libs/${PN}/${P}.tar.xz" LICENSE="BSD-2 GPL-2 LGPL-2.1 ZLIB" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="+X bmp connman dds debug doc drm +eet elogind examples fbcon +fontconfig - fribidi gif gles2 gnutls glib +gstreamer harfbuzz hyphen ibus ico libressl - lua +luajit jpeg2k json nls mono opengl +pdf physics pmaps postscript psd - pulseaudio raw scim sdl +sound +ssl +svg +system-lz4 systemd tga tgv tiff - tslib unwind v4l vnc wayland webp xcf xim xpm xpresent zeroconf" +IUSE="+X bmp connman cpu_flags_arm_neon dds debug doc drm +eet elogind examples + fbcon +fontconfig fribidi gif gles2 gnutls glib +gstreamer harfbuzz hyphen + ibus ico libressl lua +luajit jpeg2k json nls mono opengl +pdf physics + pmaps postscript psd pulseaudio raw scim sdl +sound +ssl +svg +system-lz4 + systemd tga tgv tiff tslib unwind v4l vnc wayland webp xcf xim xpm xpresent + zeroconf" REQUIRED_USE=" ?? ( elogind systemd ) @@ -244,6 +245,11 @@ src_configure() { fi emesonargs+=( -D lua-interpreter="${luaChoice}" ) + # Not all arm CPU's have neon instruction set, #722552 + if use arm && ! use cpu_flags_arm_neon; then + emesonargs+=( -D native-arch-optimization=false ) + fi + meson_src_configure }