QEMU可以用g++编译吗?

Can QEMU be compiled with g++?

The wiki seems to indicate the default wiki for QEMU is gcc and the alternative is clang.。我对利用 c++ 库直接构建 QEMU 很感兴趣。有没有用g++构建QEMU的方法?

QEMU 的大部分是 C 代码,因此应该使用 C 编译器构建。它的一些小的可选部分是 C++,并且是用 C++ 编译器构建的——即,如果使用 gcc,则为 g++,如果使用 clang,则为 clang++。 configure 会自动找到 C++ 编译器,meson 应该自动将它用于具有正确扩展名的源文件。