- 论坛徽章:
- 0
|
解决了,
主要是使用了gcc编译了C++的代码,所以连接的时候没有加-lstdc++参数,导致c++的库函数没有被连接进来。加-lstdc++就ok了。
不过后来又遇到了一个奇怪的问题,就是perl: symbol lookup error
原来没有把一个静态的库编译进来。比较奇怪,我更换了Makefile.PL的位置就ok了。
#有错误的
LIBS => ['-ldict -lstdc++ '], # e.g., '-lm'
然后我通过
ldd SegWord.so 发现libdict.a没有被连接,所以会出现perl找不到符号的bug
然后我就换了个位置和stdc++
#正确的
LIBS => ['-lstdc++ -ldict'], # e.g., '-lm'
这个问题和连接的顺序有关系? 谁来解释一下?
现在扩展可以正常工作了,但是上面这个奇怪问题还没有完全理解。
1 use 5.008008;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6 NAME => 'SegWord',
7 VERSION_FROM => 'lib/SegWord.pm', # finds $VERSION
8 PREREQ_PM => {}, # e.g., Module::Name => 1.1
9 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
10 (ABSTRACT_FROM => 'lib/SegWord.pm', # retrieve abstract from module
11 AUTHOR => 'root <root@localdomain>') : ()),
12 LIBS => ['-lstdc++ -ldict'], # e.g., '-lm'
13 DEFINE => '', # e.g., '-DHAVE_SOMETHING'
14 # CC => 'gcc',
15 INC => '-I. -I/usr/include/', # e.g., '-I. -I/usr/include/ other'
16 # Un-comment this if you add C files to link with later:
17 # OBJECT => '$(O_FILES)', # link all the C files too
18 );
~ |
|