55163723ea
When orc was compiled before, gnuradio will use it as optional
dependency:
$ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/gnuradio-config-info | grep NEEDED
[...]
0x0000000000000001 (NEEDED) Shared library: [liborc-0.4.so.0]
[...]
Apparently there is no option provided by the build system to
en-/disable support for orc:
41b4df055b/lib/CMakeLists.txt (L449)
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Gwenhael Goavec-Merou" <gwenhael.goavec-merou@trabucayre.com>
Tested-by: "Gwenhael Goavec-Merou" <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
118 lines
3.0 KiB
Makefile
118 lines
3.0 KiB
Makefile
################################################################################
|
|
#
|
|
# gnuradio
|
|
#
|
|
################################################################################
|
|
|
|
GNURADIO_VERSION = 3.7.5
|
|
GNURADIO_SITE = http://gnuradio.org/redmine/attachments/download/792
|
|
GNURADIO_LICENSE = GPLv3+
|
|
GNURADIO_LICENSE_FILES = COPYING
|
|
|
|
GNURADIO_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
|
|
# host-python-cheetah is needed for volk to compile
|
|
GNURADIO_DEPENDENCIES = \
|
|
host-python-cheetah \
|
|
host-swig \
|
|
boost
|
|
|
|
ifeq ($(BR2_PACKAGE_ORC),y)
|
|
GNURADIO_DEPENDENCIES += orc
|
|
endif
|
|
|
|
GNURADIO_CONF_OPTS = \
|
|
-DENABLE_DEFAULT=OFF \
|
|
-DENABLE_VOLK=ON \
|
|
-DENABLE_GNURADIO_RUNTIME=ON
|
|
|
|
# For third-party blocks, the gnuradio libraries are mandatory at
|
|
# compile time.
|
|
GNURADIO_INSTALL_STAGING = YES
|
|
|
|
# Yes, this is silly, because -march is already known by the compiler
|
|
# with the internal toolchain, and passed by the external wrapper for
|
|
# external toolchains. Nonetheless, gnuradio does some matching on the
|
|
# CFLAGS to decide whether to build the NEON functions or not, and
|
|
# wants to see the string 'armv7' in the CFLAGS.
|
|
ifeq ($(BR2_ARM_CPU_ARMV7A)$(BR2_ARM_CPU_HAS_NEON),yy)
|
|
GNURADIO_CONF_OPTS += -DCMAKE_C_FLAGS="-march=armv7-a"
|
|
endif
|
|
|
|
# As soon as -mfpu=neon is supported by the compiler, gnuradio will try
|
|
# to use it. But having NEON support in the compiler doesn't necessarily
|
|
# mean we have NEON support in our CPU.
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON),)
|
|
GNURADIO_CONF_OPTS += -Dhave_mfpu_neon=0
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_ANALOG),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_ANALOG=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_ANALOG=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_BLOCKS),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_CHANNELS),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_CHANNELS=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_CHANNELS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_DIGITAL),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_DIGITAL=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_DIGITAL=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_FEC),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FEC=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FEC=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_FFT),y)
|
|
GNURADIO_DEPENDENCIES += fftw
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FFT=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FFT=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_FILTER),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FILTER=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_FILTER=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_PYTHON),y)
|
|
GNURADIO_DEPENDENCIES += python
|
|
GNURADIO_CONF_OPTS += -DENABLE_PYTHON=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_PYTHON=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_PAGER),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_PAGER=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_PAGER=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_TRELLIS),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_TRELLIS=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_TRELLIS=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNURADIO_UTILS),y)
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_UTILS=ON
|
|
else
|
|
GNURADIO_CONF_OPTS += -DENABLE_GR_UTILS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|