Hey there. I am currently compiling my C++ project against musl. The reason is that I need a fully static executable and glibc does not seem to be suited for that case. Currently I am doing the compilation inside an Alpine based Docker image. Using buildx and QEMU I also cross-compile for aarch64 - which is terribly slow. Apart from that, the problem I am facing with this approach is that a few tools I want to use (static code analysis, FOSS scan, etc.) do not run under Alpine, as they require an Ubuntu loader. Of course I tried making them run under Alpine but I feel this is not a proper solution. Anyhow I have failed so far. So I came across musl-tools, resp. musl-gcc which is a wrapper around GCC on Ubuntu that "replaces" glibc libraries by musl. I am able to compile a simple C program with this, but not C++. It fails including any C++ header. I assume it supports only C, as the name musl-gcc indicates. Is there any way to compile a C++ program on Ubuntu entirely static (against musl)? And if so, would this work with a "proper" amd64 -> aarch64 cross-compiler? So I could get rid of QEMU.