You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GQRX does not compile on "pre QT5" systems with Boost versions higher than 1.47. The reason is a known QT bug QTBUG-22829 where moc has trouble with certain boost headers. The workaround is to make the critical headers invisible to MOC:
Example:
ifndef Q_MOC_RUN
include <boost/python.hpp>
endif
Details of the bug can be found here: https://bugreports.qt-project.org/browse/QTBUG-22829
I would like to request this fix as the latest Pybombs based gnuradio build system is based on Boost 1.53 and provides a build recipe for GQRX that sadly does not work due to this bug.
The text was updated successfully, but these errors were encountered:
Thanks for the analysis. I encountered this very same issue yesterday but I thought it was because of conflicting boost installations. I will try to fix this ASAP.
GQRX does not compile on "pre QT5" systems with Boost versions higher than 1.47. The reason is a known QT bug QTBUG-22829 where moc has trouble with certain boost headers. The workaround is to make the critical headers invisible to MOC:
Example:
ifndef Q_MOC_RUN
include <boost/python.hpp>
endif
Details of the bug can be found here: https://bugreports.qt-project.org/browse/QTBUG-22829
I would like to request this fix as the latest Pybombs based gnuradio build system is based on Boost 1.53 and provides a build recipe for GQRX that sadly does not work due to this bug.
The text was updated successfully, but these errors were encountered: