d7e49f5f42
boost-thread needs std::current_exception since version 1.71.0 and
386f5507cb
std::current_exception depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 as a
result, gnuradio fails to build on:
[ 12%] Building CXX object gnuradio-runtime/lib/pmt/CMakeFiles/gnuradio-pmt.dir/pmt_pool.cc.o
In file included from /home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/exception/detail/exception_ptr.hpp:15:0,
from /home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/exception_ptr.hpp:9,
from /home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/thread/exceptional_ptr.hpp:10,
from /home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/thread/future.hpp:34,
from /home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/thread.hpp:24,
from /home/test/autobuild/run/instance-2/output-1/build/gnuradio-3.7.13.5/gnuradio-runtime/include/pmt/pmt_pool.h:27,
from /home/test/autobuild/run/instance-2/output-1/build/gnuradio-3.7.13.5/gnuradio-runtime/lib/pmt/pmt.cc:31:
/home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/exception/diagnostic_information.hpp: In function 'std::string boost::current_exception_diagnostic_information(bool)':
/home/test/autobuild/run/instance-2/output-1/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/boost/exception/diagnostic_information.hpp:49:26: error: 'current_exception' is not a member of 'std'
else if (auto* p=std::current_exception().__cxa_exception_type())
^
So add this dependency on boost-thread, boost-log and gnuradio (the only
reverse dependencies of boost-thread that does not already depends on
!BR2_TOOLCHAIN_HAS_GCC_BUG_64735)
Finally, add this dependency on gqrx as it is a reverse dependency of
gnuradio
Fixes:
- http://autobuild.buildroot.org/results/c384205cf50929c320d90b620f2390837721d9f9
- http://autobuild.buildroot.org/results/47440354b336b943b74b72fa303b079dc962bfd0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
|
|
depends on BR2_USE_MMU # gnuradio
|
|
depends on !BR2_PACKAGE_PYTHON3 # gnuradio
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR || !BR2_STATIC_LIBS
|
|
|
|
comment "gqrx needs qt5"
|
|
depends on !BR2_PACKAGE_QT5
|
|
|
|
comment "gqrx needs a toolchain not affected by GCC bug 64735"
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
|
|
|
config BR2_PACKAGE_GQRX
|
|
bool "gqrx"
|
|
depends on BR2_USE_MMU # gnuradio
|
|
depends on !BR2_STATIC_LIBS # gnuradio
|
|
depends on BR2_INSTALL_LIBSTDCPP # boost
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
|
depends on BR2_USE_WCHAR # boost
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on BR2_PACKAGE_QT5
|
|
depends on !BR2_PACKAGE_PYTHON3
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # gnuradio
|
|
select BR2_PACKAGE_BOOST
|
|
select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
|
|
select BR2_PACKAGE_BOOST_SYSTEM
|
|
select BR2_PACKAGE_GNURADIO
|
|
select BR2_PACKAGE_GNURADIO_ANALOG
|
|
select BR2_PACKAGE_GNURADIO_AUDIO
|
|
select BR2_PACKAGE_GNURADIO_BLOCKS
|
|
select BR2_PACKAGE_GNURADIO_DIGITAL
|
|
select BR2_PACKAGE_GNURADIO_FFT
|
|
select BR2_PACKAGE_GNURADIO_FILTER
|
|
select BR2_PACKAGE_GR_OSMOSDR
|
|
select BR2_PACKAGE_QT5BASE_GUI
|
|
select BR2_PACKAGE_QT5BASE_WIDGETS
|
|
select BR2_PACKAGE_QT5SVG
|
|
help
|
|
Gqrx is an open source software defined radio (SDR) receiver
|
|
implemented using GNU Radio and the Qt GUI
|
|
toolkit. Currently it works on Linux and Mac with hardware
|
|
supported by gr-osmosdr, including Funcube Dongle, RTL-SDR,
|
|
Airspy, HackRF, BladeRF, RFSpace, USRP and SoapySDR.
|
|
|
|
Gqrx can operate as an AM/FM/SSB receiver with audio output
|
|
or as an FFT-only instrument. There are also various hooks
|
|
for interacting with external application using network
|
|
sockets.
|
|
|
|
http://gqrx.dk/
|