mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-30 17:03:31 +08:00
package/fftw: add ARM optimisations
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [based on a patch by Guillaume] Cc: guillaume william brs <guillaume.bressaix@gmail.com> Cc: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
20b741da4c
commit
007d688e52
@ -18,6 +18,9 @@ config BR2_PACKAGE_FFTW_USE_SSE
|
||||
config BR2_PACKAGE_FFTW_USE_SSE2
|
||||
bool
|
||||
|
||||
config BR2_PACKAGE_FFTW_USE_NEON
|
||||
bool
|
||||
|
||||
choice
|
||||
prompt "fftw precision"
|
||||
default BR2_PACKAGE_FFTW_PRECISION_DOUBLE
|
||||
@ -28,6 +31,7 @@ config BR2_PACKAGE_FFTW_PRECISION_SINGLE
|
||||
bool "single"
|
||||
select BR2_PACKAGE_FFTW_USE_SSE if BR2_X86_CPU_HAS_SSE
|
||||
select BR2_PACKAGE_FFTW_USE_SSE2 if BR2_X86_CPU_HAS_SSE2
|
||||
select BR2_PACKAGE_FFTW_USE_NEON if BR2_ARM_CPU_HAS_NEON && !BR2_ARM_SOFT_FLOAT
|
||||
help
|
||||
Compile fftw in single precision, i.e. use 'float' for floating
|
||||
point type.
|
||||
|
@ -23,6 +23,10 @@ endif
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_SSE),--enable,--disable)-sse
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_SSE2),--enable,--disable)-sse2
|
||||
|
||||
# ARM optimisations
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_NEON),--enable,--disable)-neon
|
||||
FFTW_CFLAGS += $(if $(BR2_PACKAGE_FFTW_USE_NEON),-mfpu=neon)
|
||||
|
||||
FFTW_CONF_OPTS += CFLAGS="$(FFTW_CFLAGS)"
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
Loading…
Reference in New Issue
Block a user