C コードから C++ メソッドを呼び出すときに問題が発生します。C++ コードで呼び出す必要があるメソッドがクラス内にありません。簡単な例をセットアップしようとしていますが、次のファイルがあります。
//header.h
#ifdef __cplusplus
#include <iostream>
extern "C" {
#endif
int print(int i, double d);
#ifdef __cplusplus
}
#endif
//ccode.c
#include "header.h"
main() {
printf("hello");
print(2,2.3);
}
//cppcode.cc
#include "header.h"
using namespace std;
int print(int i, double d)
{
cout << "i = " << i << ", d = " << d;
}
おそらく私のエラーは、これをコンパイルしてリンクしようとしている方法にあります。私は次のことをしています:
g++ -c cppcode.cc -o cppcode.o
それはうまくいきます。
gcc ccode.c cppcode.o -o ccode
ここで、次のエラーが発生します。
cppcode.o: In function `print':
cppcode.cc:(.text+0x16): undefined reference to `std::cout'
cppcode.cc:(.text+0x1b): 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*)'
cppcode.cc:(.text+0x28): undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(int)'
cppcode.cc:(.text+0x35): 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*)'
cppcode.cc:(.text+0x42): undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(double)'
cppcode.o: In function `__static_initialization_and_destruction_0(int, int)':
cppcode.cc:(.text+0x6b): undefined reference to `std::ios_base::Init::Init()'
cppcode.cc:(.text+0x70): undefined reference to `std::ios_base::Init::~Init()'
collect2: ld returned 1 exit status
これは、C コンパイラを使用しているためだと思います。この小さな例をコンパイルしてリンクする正しい方法は何ですか? アイデアは、C コードを実行し、C で書き直す必要なく、C++ 関数を呼び出すだけであるということです。事前に助けてくれてありがとう!
Ubuntu 12.04、gcc バージョン 4.6.3 を使用しています