最小限の共有ライブラリをコンパイルしてリンクしようとしていますが、現在 2 時間失敗しています。すべてのコードは次のとおりです。
// rect.h
class Rect{
private:
int width_, height_;
public:
Rect(int width, int height);
int width();
int height();
};
// rect.cpp
#include "rect.h"
Rect::Rect(int width, int height)
:width_(width), height_(height){}
int Rect::width() { return width_; }
int Rect::height() { return height_; }
// client.cpp
#include "rect.h"
#include <iostream>
int main() {
std::cout << Rect(1,2).width();
return 0;
}
そして、これは私がそれをコンパイルしようとする方法です:
$ g++ -shared -o librect.so rect.cpp
$ g++ -L. -lrect -Wl,-rpath,'.' client.cpp -o client
/tmp/cc0Xe7ms.o: In function `main':
client.cpp:(.text+0x1a): undefined reference to `Rect::Rect(int, int)'
client.cpp:(.text+0x26): undefined reference to `Rect::width()'
collect2: error: ld returned 1 exit status
ライブラリは問題なくコンパイルされ、Rect クラスは次のように適切にエクスポートされます。
$ nm -D librect.so
0000000000201028 B __bss_start
w __cxa_finalize
0000000000201028 D _edata
0000000000201030 B _end
0000000000000738 T _fini
w __gmon_start__
00000000000005b8 T _init
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
w _Jv_RegisterClasses
0000000000000714 T _ZN4Rect5widthEv
0000000000000724 T _ZN4Rect6heightEv
00000000000006f0 T _ZN4RectC1Eii
00000000000006f0 T _ZN4RectC2Eii
最も奇妙なことは、これが正常にコンパイルされ、私の仕事用コンピューター (Kubuntu 12.10 64 ビット) で動作することですが、私が試した他のマシン (合計 4 つ、すべて 64 ビットの Ubuntu/Kubuntu 12.04 および 12.10) では正しくリンクできません。
考えられることはすべて試しました。詳細オプションをリンカーに渡すと、librect.so が実際に正常に検出されたことが示されます。
問題が何であるかを知っている人はいますか?