8

所以我已经阅读了大约十几页来解释如何做到这一点,而在我的一生中,我无法让它发挥作用。

我有一个用 C++ 编写的库,以及用 gnu 编译器编译的一组用 C 编写的代码,我似乎无法从 C 调用 C++ 代码。

我有一个用 C++ 编写的库:

打印头OO.hpp

#ifdef __cplusplus
extern "C" 
#endif

void printThis(void);

printSrcOO.cpp

#include "printHeadOO.hpp"
#include <iostream>

void printThis(void){
    std::cout<<"This is Printed Using C++ \n";
}

好的很酷,如果我从 C++ 程序中调用它,它会编译、运行并且一切都很愉快。但假设我从 C 程序中调用它:

printMain.c

#include <stdio.h>
#include "printHeadOO.hpp" 

int main(void){
    printf("This is printed from C Main \n");
    printThis();

    return 0;   
}

所以一切都编译得很好:

#g++ -c printSrcOO.cpp
#gcc -c printMain.c

但随后在链接时:

#gcc printSrcOO.o printMain.o -o myProgram

gcc 显示以下内容:

printSrcOO.o: In function `__static_initialization_and_destruction_0(int, int)':
printSrcOO.cpp:(.text+0x23): undefined reference to `std::ios_base::Init::Init()'
printSrcOO.o: In function `__tcf_0':
printSrcOO.cpp:(.text+0x6c): undefined reference to `std::ios_base::Init::~Init()'
printSrcOO.o: In function `printThis':
printSrcOO.cpp:(.text+0x83): undefined reference to `std::cout'
printSrcOO.cpp:(.text+0x88): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'
printSrcOO.o:(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status

如何让 g++ 创建 gcc 将使用的钩子?我只是在做一些愚蠢的事情/错过了什么吗?

蒂亚丹

4

1 回答 1

9

您可以使用 gcc 编译您的 C 代码并使用这些 C++ 函数,但是您必须将最终可执行文件与 g++ 链接,因为 C++ 函数需要 C++ 标准库:

g++ printSrcOO.o printMain.o -o myProgram

或者,您可以尝试使用 gcc 手动链接 C++ 库:

gcc printSrcOO.o printMain.o -o myProgram -lstdc++

但我会坚持使用 g++ 链接,因为我不确定它是否设置了其他重要的链接标志。

于 2012-12-10T22:15:32.983 回答