Issue
The wiki seems to indicate the default wiki for QEMU is gcc and the alternative is clang..I am interested in utilizing c++ libraries in building QEMU directly. Is there a method to build QEMU with g++?
Solution
Most of QEMU is C code and should therefore be built with a C compiler. A few small optional parts of it are C++, and are built with the C++ compiler -- ie g++ if using gcc, clang++ if using clang. configure will automatically find the C++ compiler and meson should automatically use it for source files with the right extension.
Answered By - Peter Maydell
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.