|
Re: Qt Target Library Location?
|
09/27/2012 5:51 PM
post95904
|
Re: Qt Target Library Location?
Serveral things...
1) Looks like I forgot "export" in my post you referred to...
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<wherever the libraries are located>
should be
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<wherever the libraries are located>
... just like the other variables!
2) You cannot execute from the SD card because the bsp did not start the driver with the right permissions:
It should look like:
devb-mmcsd-beagle cam quiet blk cache=2m dos exe=all mmcsd noac12
It is the "dos exe=all" that is missing - chmod won't work!
3) If you hadn't mounted your card at /tmp, you could have copied 'helloworld' to /tmp and then done chmod and
successfully run it. Probably should mount at /dos or something like that.
BTW you can create macro's in u-boot - you don't have to enter all that stuff by hand everytime :)
|
|
|