Hi dh29,
You need to install Yocto Cross compile toolchain in order to compile imx-test applications.
I have setup the Toolchain for i.MX7d board.
To install Yocto Cross Compile toolchain, please perform following steps.
- Go to Yocto Build Directory.
- e.g. $ cd $HOME/fsl-release-bsp
- Source the build environment for i.MX7d board then execute the below command.
- bitbake fsl-image-machine-test -c populate_sdk
This will generate the Toolchain script & it is located at tmp/deploy/sdk.
- Install the toolchain by running the script file.
- e.g. ./tmp/deploy/sdk/<script_file>.sh
This will ask where you need to install the toolchain.So you need to specify the path, if you don't specify the path then it will take the default path.
Each time you want to use the toolchain, you have to source the environment setup script .
- e.g. source /<sdk_toolchain_path>/<environment_setup_script>
Using these steps you will be able to run all the imx-test applications using make command.
Regards,
Shivani