Even though the default SDK settings will be appropriate for the majority of users, the SDKs can be customized using the following variables:
- SDKMACHINE: Specifies the architecture of the host machine for the SDK. It defaults to the architecture of the host machine, for example x86_64.
- SDKIMAGE_FEATURES: A list of image features to include in the target sysroot; for example, you usually won't want the static libraries added to your image, but you do want to be able to cross-compile static applications, so you can add all the static libraries to the toolchain by adding the following SDK feature:
SDKIMAGE_FEATURES_append = " staticdev-pkgs"
- SDKPATH: Allows us to customize the default installation ...