Hi all,
I want to cross compile OpenCV library on an imx6 board using meta toolchain (Yocto)
Here's the steps I've done:
- building the meta toolchian
bitbake meta-toolchain
- building OpenCV image
bitbake opencv
-adding opencv to the image (adding opencv recipe) by changing the local config file
CORE_IMAGE_EXTRA_INSTALL += "\
opencv \
"
- building the toolchain again
bitbake meta-toolchain
- install the toolchain
sudo sh \
tmp/deploy/sdk/poky-eglibc-x86_64-arm-toolchain-<version>.sh
- setup the toolchain environment
source \
/opt/poky/<version>/environment-setup-armv7a-vfp-neon-poky-linux-gnueabi
No I'm having a hard time cross compiling a sample openCV code.
I can see opencv libraries and include files on the Yocto directory (build directory) but I don't see them on /opt/poky/<version/ (which I guess is the directory for cross compilation)
( simple c code is compiled perfectly but there's no opencv libraries and include files to compile opencv)
is there a step I missed to build the toolchain to create openCV files?
any suggestions would be great
Thanks