I am using zig as a build system for a c++ project and was wondering how one can force the build system to use the system’s native c++ standard library headers instead of the libc++ ones provided by zig.
My issue arises from trying to use the system integration feature: I’d like the person running the build script to be able to choose either building the dependencies from scratch or linking the versions provided by the system. This does not work right now because mixing code built against libc++ and libstdc++ headers is not possible.