0

我正在尝试将使用 gcc 构建的 .a 库链接到使用 g++ 构建的程序。但是名称 mangling 是不同的。我怎样才能做到这一点?谢谢,CP

4

1 回答 1

5

在您的 C++ 代码中,您只需要将 gcc 库头文件包含在 extern "C" 中:

extern "C" {
#include "my_library.h"
}
于 2009-06-03T14:49:24.437 回答