Yocto Toolchain installation
Prerequisites
A full Yocto build environment is required for the toolchain generation.
To setup a Yocto build environment follow steps 1 & 3 of the Build Yocto from source code guide and then proceed to either the toolchain or complete SDK steps below:
Build a toolchain
$ MACHINE=am62x-var-som bitbake meta-toolchain-arago-tisdk
Build a complete SDK
To compile applications that require libraries other than glibc you should build an SDK which contains development versions of all libraries in the rootfs image, and not just the basic toolchain.
E.g. when using the var-default-image image:
$ MACHINE=am62x-var-som bitbake -c populate_sdk var-default-image
Install the toolchain/SDK
Install the tools by running the resulted script in deploy-ti/sdk.
E.g.
$ deploy-ti/sdk/arago-2023.10-aarch64-linux-tisdk.sh
Note: The toolchain/script name depends on your build machine and the bitbaked image/recipe, and may change.
Accept all the default options, and at the end of the installation you should see the following:
SDK has been successfully set up and is ready to be used.
Use the toolchain/SDK
Each time you wish to use the toolchain in a new shell session, you need to source the environment setup script:
$ source /opt/arago-2023.10/environment-setup-aarch64-linux