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
{{ message }}
This repository has been archived by the owner on May 10, 2019. It is now read-only.
When building with brew install gnuradio --with-qt -v, the build fails. Walking through why it's failing, it seems to be that the gnuradio-qtgui subproject can't find the framework paths for QT, and the only place it is looking is in /usr/local/Cellar/python/2.7.3/Frameworks (-F/usr/local/Cellar/python/2.7.3/Frameworks).
The Qt_.framework and qwt_.framework exist in /usr/local/lib, not in /usr/local/Cellar/python/2.7.3/Frameworks.
As a workaround, I was able to get it working via symlinking the Qt* and qwt* frameworks into /usr/local/Cellar/python/2.7.3/Frameworks:
Based on other things I've seen online, this may have to do with the version of qt/qwt/pyqt/pyqwt:
qt: stable 4.8.4 (bottled), HEAD
pyqt: stable 4.9.4
qwt: stable 6.0.1
pyqwt: stable 5.2.0
The text was updated successfully, but these errors were encountered:
I found how to solve the problem. I found in here http://www.qtcentre.org/threads/34857-Qwt-6-0-0-rc1
Answer is : On Mac OS X, the linker is looking for the qwt libraries in /Libary/Frameworks/qwt.framework/
so need to link qwt.framework to /Libary/Frameworks/ and the problem solve ^^
When building with
brew install gnuradio --with-qt -v
, the build fails. Walking through why it's failing, it seems to be that the gnuradio-qtgui subproject can't find the framework paths for QT, and the only place it is looking is in /usr/local/Cellar/python/2.7.3/Frameworks (-F/usr/local/Cellar/python/2.7.3/Frameworks
).The Qt_.framework and qwt_.framework exist in /usr/local/lib, not in /usr/local/Cellar/python/2.7.3/Frameworks.
As a workaround, I was able to get it working via symlinking the Qt* and qwt* frameworks into /usr/local/Cellar/python/2.7.3/Frameworks:
Based on other things I've seen online, this may have to do with the version of qt/qwt/pyqt/pyqwt:
qt: stable 4.8.4 (bottled), HEAD
pyqt: stable 4.9.4
qwt: stable 6.0.1
pyqwt: stable 5.2.0
The text was updated successfully, but these errors were encountered: