[oe-commits] [meta-openembedded] 21/34: fftw: enable neon for single precision on aarch64 by default

git at git.openembedded.org git at git.openembedded.org
Fri Aug 17 16:50:05 UTC 2018


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 44befc03ce2a9e6cd358142a8e5e18f3880e24d3
Author: Andreas Müller <schnitzeltony at gmail.com>
AuthorDate: Thu Aug 16 20:27:39 2018 +0200

    fftw: enable neon for single precision on aarch64 by default
    
    Signed-off-by: Andreas Müller <schnitzeltony at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-support/fftw/fftw_3.3.8.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-oe/recipes-support/fftw/fftw_3.3.8.bb b/meta-oe/recipes-support/fftw/fftw_3.3.8.bb
index 09c692d..d9e0ea3 100644
--- a/meta-oe/recipes-support/fftw/fftw_3.3.8.bb
+++ b/meta-oe/recipes-support/fftw/fftw_3.3.8.bb
@@ -19,7 +19,10 @@ EXTRA_OECONF = "--disable-fortran --enable-shared --enable-threads"
 
 CFLAGS += "-D_GNU_SOURCE"
 
+# neon is optional for arm version < 8 -> check tune features
 FFTW_NEON = "${@bb.utils.contains('TUNE_FEATURES', 'neon', '--enable-neon', '', d)}"
+# neon is suppored for arm version = 8 -> enable
+FFTW_NEON_aarch64 = "--enable-neon"
 FFTW_NEON_class-native = ""
 
 do_configure() {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list