PDA

View Full Version : Qt configure for BeagleBoard XM error



cengiz
12th June 2011, 23:23
Hi everybody. I want to use Qt my BeagleBoard XM.So i found a good site that name's http://treyweaver.blogspot.com/2010/10/setting-up-qt-development-environment.html
i did step by step according to this site.But my configured output is

Qt is now configured for building. Just run 'make'.
Once everything is built, you must run 'make install'.
Qt will be installed into /opt/qt-arm

To reconfigure, run 'make confclean' and 'configure'.

there is no problem but when i run make command, i have some errors that are ;

/usr/local/angstrom/arm/libexec/gcc/arm-angstrom-linux-gnueabi/4.3.3/cc1plus: error while loading shared libraries: libmpfr.so.1: cannot open shared object file: No such file or directory
make[1]: *** [.obj/release-shared-emb-arm/qabstractanimation.o] error 1
make[1]: `/home/cengiz/Masaüstü/qt-everywhere-opensource-src-4.6.2/src/corelib' dizininden çıkılıyor
make: *** [sub-corelib-make_default-ordered] error 2


Please help me...Thanks a lot...

sundar.subramaniyan
17th July 2011, 16:57
It seems the math library 'libmpfr.so' could not be found by the compiler (angstrom's cross compiler in your case).
It seems that you have not installed your cross compiler properly. Best solution is to install that correctly.

Or, you could manually try to set the LD_LIBRARY_PATH and PATH environment variables to try your luck.

Example:


export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:</path/to/your/cross/compiler's/lib/directory>


set the PATH variable if needed.

You may need to do edit your ~/.bashrc or your shell's profile to include the above to set it permanently.

Good luck.