Compile Build Static lib Arm Embeded Beaglebond with QT
-
Hi All,
im new to Qt Embeded.I have problem when cross compile Qt to Embeded as tutorial from https://chaitramohankumar.wordpress.com/2014/08/13/building-qt4-8-6-for-embedded-linux/
build was succeed, but when application transfer into beaglebond, the result was "-sh application not found".
From my suggestion, it is because library ( /usr/local/linaro/bin/arm-linux-gnueabihf-g++) not found in beaglebond.
is ther any way to make thos library into static when we build cross compile Qt to Arm Embeded??
any suggestion would be appreciate.
thanks
-
@joejond said in Compile Build Static lib Arm Embeded Beaglebond with QT:
/usr/local/linaro/bin/arm-linux-gnueabihf-g++
is not a library - this is the C++ compiler, no need to copy it to the target.
"-sh application not found" - at which exact step does it happen (what is executed at that time?)? -
@jsulm
Sorry for my foolnessi mean that some off library was not loaded. after we cehck using ldd, found
/lib/ld-linux-armhf.so.3 not foundi think, if i copy manual to beaglebone (black), it will OK, but is there any way to make this lib aotomatic include when i build in qt cross compile ?
need more idea..