This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
config BR2_PACKAGE_FFTW_SINGLE
bool "fftw-single"
help
Compile fftw in single precision, i.e. use 'float'
for floating point type.

View File

@@ -0,0 +1 @@
../fftw.hash

View File

@@ -0,0 +1,37 @@
################################################################################
#
# fftw-single
#
################################################################################
FFTW_SINGLE_VERSION = $(FFTW_VERSION)
FFTW_SINGLE_SOURCE = fftw-$(FFTW_VERSION).tar.gz
FFTW_SINGLE_SITE = $(FFTW_SITE)
FFTW_SINGLE_DL_SUBDIR = fftw
FFTW_SINGLE_INSTALL_STAGING = $(FFTW_INSTALL_STAGING)
FFTW_SINGLE_LICENSE = $(FFTW_LICENSE)
FFTW_SINGLE_LICENSE_FILES = $(FFTW_LICENSE_FILES)
FFTW_SINGLE_CONF_ENV = $(FFTW_COMMON_CONF_ENV)
FFTW_SINGLE_CONF_OPTS = \
$(FFTW_COMMON_CONF_OPTS) \
CFLAGS="$(FFTW_SINGLE_CFLAGS)" \
--enable-single
FFTW_SINGLE_CFLAGS = $(FFTW_COMMON_CFLAGS)
# x86 optimisations
FFTW_SINGLE_CONF_OPTS += \
$(if $(BR2_X86_CPU_HAS_SSE),--enable,--disable)-sse \
$(if $(BR2_X86_CPU_HAS_SSE2),--enable,--disable)-sse2
# ARM optimisations
ifeq ($(BR2_ARM_CPU_HAS_NEON):$(BR2_ARM_SOFT_FLOAT),y:)
FFTW_SINGLE_CONF_OPTS += --enable-neon
FFTW_SINGLE_CFLAGS += -mfpu=neon
else
FFTW_SINGLE_CONF_OPTS += --disable-neon
endif
$(eval $(autotools-package))