所以我已经阅读了大约十几页来解释如何做到这一点,而在我的一生中,我无法让它发挥作用。
我有一个用 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 将使用的钩子?我只是在做一些愚蠢的事情/错过了什么吗?
蒂亚丹