不能链接到共享库(Cannot link to shared library)

2019-08-03 02:55发布

我试图编译一个最小的共享库,并链接到它,现在已经没有了两个小时。 这里是所有的代码:

// 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

该库编译就好和矩形类是正确地从我可以告诉输出:

$ 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确实成功找到。

是否有人有线索的问题可能是什么?

Answer 1:

该库具有本地翻译单元去:

g++ -L. -Wl,-rpath,'.' client.cpp -o client -lrect
#                                           ^^^^^^

它与符号如何悬而未决由链接抬头做; 在互联网上搜索的信息,在此过多,如果你很好奇。



文章来源: Cannot link to shared library