Compiling qt5 on BeagleBoneBlack Error 2
-
Hi,
i want to install qt5 on my BeagelBoneBlackBord with ubuntu precise and lxde.
The standart installation packages dont work for the bord, so i have to compile the source.
At first i tried the compiling guide for the raspPI, but for the BeagleBone its very difficult to change paths...
I got many error, so i use this guide: "http://qt-project.org/wiki/Building-Qt-5-from-Git":http://qt-project.org/wiki/Building-Qt-5-from-GitThats works better!
But at the end of the command "make -j 4" i get these errors:
!http://www.pic-upload.de/view-19987470/2013-07-08-12.59.57.jpg.html(pic)!if pic doesnt work use this link : "http://www.pic-upload.de/view-19987470/2013-07-08-12.59.57.jpg.html":http://www.pic-upload.de/view-19987470/2013-07-08-12.59.57.jpg.html
-
Hi,
If there is nobody here with BeagleBone experience, try asking at their official forums (http://beagleboard.org/Community/Forums ).
I haven't compiled Qt for embedded Linux myself, but I'll try: The error messages show me two things:
You are using an unreleased version (Qt 5.1.1 is not ready yet, and could contain bugs)
Your linker can't find private OpenGL functions (I'm not sure why)
Try compiling a released version instead. Download the "Qt 5.1.0 source code":http://download.qt-project.org/official_releases/qt/5.1/5.1.0/single/qt-everywhere-opensource-src-5.1.0.tar.gz , put it in a new directory, then run configure and make again.
-
Ok, i ask at the BeagBone Forum.
I downloaded the 5.1 src and make ./configure ... .
It dont have init-repository so it is not required?
After i try to compile. But i get nearly the same error:"http://www.pic-upload.de/view-20002151/2013-07-09-17.32.45.jpg.html":http://www.pic-upload.de/view-20002151/2013-07-09-17.32.45.jpg.html
-
No, they are very different errors. The first is a linker error (the linker can't find a library). The second is a compiler error (the compiler can't find a folder).
Good luck