I'm trying to make a toolchain by using bitbake with the following command
- bitbake meta-toolchain
I can see some file (poky-eglibc-x86_64-meta-toolchain-cortexa9hf-vfp-neon-toolchain-1.6.3.sh) of installing the toolchain at /build/tmp/deploy/sdk.
After installing toolchain by using that file, I can see that it is located at some directory.
But, some libraries such as libgpsd and libgps i added by using "hob" ware not included in the lib folder.
There were two folders in that path as the following:
. cortexa9hf-vfp-neon-poky-linux-gnueabi
. x86_64-pokysdk-linux
I think that it was including the basic include and libraries even though i already added some recipes like a gpsd.
Actually, I can find some libraries i want to add at the following path. I guess that it is the result of "bitbake core-image-base", It is not for bitbake meta-toolchain.
. fsl-community-bsp-daisy/build/tmp/sysroots/imx6solosabreauto/lib
I'd like to know how to add the other one like "imx6solosabreauto" as toolchain for my target device when i make toolchain by using bitbake.
Do i just copy the lib folder i want to use to other directory?
Could anyone have some ideas? pleas give me some help.
Thank you.