Clang based Cross SDK with OpenEmbedded Framework
Contents
Introductionπ
Clang based toolchain can be used to compile large portions of packages in OpenEmbedded Framework, in this article we will cover the generating and using OpenEmbedded SDKs based on Clang, This SDK will also have the original cross gcc based compilers cohabiting with clang
Generating SDKπ
Building image base SDK in OpenEmbedded Framework is a simple process like its building any other image or component. One can generate a SDK corresponding to final image that will be shipped on target. This gets development headers and libraries from all the dependencies packaged into the SDK installer, this SDK then can be installed and used for stand alone application development.
Preparing OpenEmbedded Workspaceπ
$ git clone https://github.com/openembedded/openembedded-core.git$ cd openembedded-core$ git clone https://github.com/openembedded/bitbake.git$ git clone https://github.com/kraj/meta-clang.git$ . ./oe-init-build-env
Add meta-clang to conf/bblayers.conf e.g.
# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf # changes incompatibly LCONF_VERSION = "6" BBPATH = "${TOPDIR}" BBFILES ?= "" BBLAYERS ?= " \ /home/kraj/openembedded-core/meta-clang \ /home/kraj/openembedded-core/meta \ " BBLAYERS_NON_REMOVABLE ?= " \ /home/kraj/openembedded-core/meta \ "
Select qemuarm64 for MACHINE in conf/local.conf, you need to uncomment the line marked in red
# # Machine Selection # # You need to select a specific machine to target the build with. There are a selection # of emulated machines available which can boot and run in the QEMU emulator: # #MACHINE ?= "qemuarm" MACHINE ?= "qemuarm64" #MACHINE ?= "qemumips" #MACHINE ?= "qemuppc" #MACHINE ?= "qemux86" #MACHINE ?= "qemux86-64" #
Build SDKπ
$ bitbake -cpopulate_sdk core-image-minimalInstall SDKπ
SDK self-installer will be in deploy are under e.g. tmp-glibc/deploy/sdk/
$ ./tmp-glibc/deploy/sdk/oecore-x86_64-aarch64-toolchain-nodistro.0.sh
OpenEmbedded SDK installer version nodistro.0
===========================================================
Enter target directory for SDK (default: /usr/local/oecore-x86_64):
You are about to install the SDK to β/usr/local/oecore-x86_64β. Proceed[Y/n]?
Extracting SDKβ¦β¦β¦β¦β¦β¦β¦β¦β¦β¦β¦.done
Setting it upβ¦done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
$ . /usr/local/oecore-x86_64/environment-setup-aarch64-oe-linux
Using SDKπ
The environment setup needs to be done in every shell where the SDK is to be used
$ . /usr/local/oecore-x86_64/environment-setup-aarch64-oe-linux
At this point the SDK is ready to be used for compiling applications as well as kernel. Since the SDK has both gcc and clang in it a new set of variables is introduced to make it easy to use clang
CLANGCC β C cross compiler
CLANGCXX β C++ cross compiler
Example 1 β Build musl C libraryπ
The example lists compiling musl C library using the cross SDK but this can be used for anything including kernel and application
$ git clone git://git.musl-libc.org/musl$ cd musl$ ./configure --host=aarch64-oe-linux CC=${CLANGCC}$ make -jExample 2 β Building llvmlinux kernelπ
$ git clone git://git.linuxfoundation.org/llvmlinux/kernel.git llvmlinux$ cd llvmlinux$ make ARCH=arm64 CC=${CLANGCC} LDFLAGS="" defconfig$ make ARCH=arm64 CC=${CLANGCC} LDFLAGS="" -j vmlinux
If the kernel for aarch64 wonβt build, then hey what have you been waiting for ? you have everything go fix it !!!
Notesπ
I have not provided prebuilt SDKs, if there is enough intrest for such SDKs, I would consider building the SDK self-installs and host them somewhere, contact me if you are interested.
Example is covering aarch64 but the SDKs are not limited to aarch64, one can build for x86,x86_64, ppc, mips, arm in same fashion. All one would need is to changes is MACHINE selection in conf/local.conf