私はC++共有ライブラリを作成しています。ライブラリを使用するメインのexeをコンパイルすると、コンパイラーから次のように与えられます。
main.cpp:(.text+0x21): undefined reference to `FooClass::SayHello()'
collect2: ld returned 1 exit status
ライブラリコード:
fooclass.h
#ifndef __FOOCLASS_H__
#define __FOOCLASS_H__
class FooClass
{
public:
char* SayHello();
};
#endif //__FOOCLASS_H__
fooclass.cpp
#include "fooclass.h"
char* FooClass::SayHello()
{
return "Hello Im a Linux Shared Library";
}
コンパイル:
g++ -shared -fPIC fooclass.cpp -o libfoo.so
メイン:main.cpp
#include "fooclass.h"
#include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
FooClass * fooClass = new FooClass();
cout<< fooClass->SayHello() << endl;
return 0;
}
コンパイル:
g++ -I. -L. -lfoo main.cpp -o main
マシンはUbuntu Linux 12です
ありがとう!
g++ -I. -L. -lfoo main.cpp -o main
問題です。 GCCの最近のバージョンでは、オブジェクトファイルとライブラリを相互に依存する順序で配置する必要があります-結果として、ライブラリフラグをリンカーの最後のスイッチとして配置する必要があります。私。 e。、書く
g++ -I. -L. main.cpp -o main -lfoo
代わりに。