Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将使用 gcc 构建的 .a 库链接到使用 g++ 构建的程序。但是名称 mangling 是不同的。我怎样才能做到这一点?谢谢,CP
在您的 C++ 代码中,您只需要将 gcc 库头文件包含在 extern "C" 中:
extern "C" { #include "my_library.h" }