免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2744 | 回复: 5
打印 上一主题 下一主题

符号 错误 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-08-11 19:30 |只看该作者 |倒序浏览
Can't load '/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/SegWord/SegWord.so' for module SegWord: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/SegWord/SegWord.so: undefined symbol: _ZNSsD1Ev at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/XSLoader.pm line 70.
at /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/SegWord.pm line 31
Compilation failed in require at test.pl line 2.
BEGIN failed--compilation aborted at test.pl line 2.

我在给perl写一个扩展,但是运行后一直有找不到_ZNSsD1Ev 这个符号的错误,请问各位这是什么引起的? 大家给点线索.

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
2 [报告]
发表于 2007-08-11 19:46 |只看该作者
编译用的命令行是什么?

论坛徽章:
0
3 [报告]
发表于 2007-08-11 20:01 |只看该作者
这个符号,我查一了一下,应该是libstdc++库的符号。

但是可能是我升级了gcc引起的。 谁遇到过这种情况。



  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              => ['-ldict'], # e.g., '-lm'
13     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
14 #       CC                    => 'g++',
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 );

[root@develop242 SegWord]# make
cp lib/SegWord.pm blib/lib/SegWord.pm
/usr/bin/perl /usr/lib/perl5/5.8.8/ExtUtils/xsubpp  -typemap /usr/lib/perl5/5.8.8/ExtUtils/typemap -typemap typemap  SegWord.xs > SegWord.xsc && mv SegWord.xsc SegWord.c
Please specify prototyping behavior for SegWord.xs (see perlxs manual)
gcc -c  -I. -I/usr/include/ -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables   -DVERSION=\"0.01\" -DXS_VERSION=\"0.01\" -fPIC "-I/usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE"   SegWord.c
Running Mkbootstrap for SegWord ()
chmod 644 SegWord.bs
rm -f blib/arch/auto/SegWord/SegWord.so
gcc  -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -L/usr/local/lib SegWord.o  -o blib/arch/auto/SegWord/SegWord.so       \
           -ldict       \
         
chmod 755 blib/arch/auto/SegWord/SegWord.so
cp SegWord.bs blib/arch/auto/SegWord/SegWord.bs
chmod 644 blib/arch/auto/SegWord/SegWord.bs
Manifying blib/man3/SegWord.3pm
[root@develop242 SegWord]# make install
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Writing /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/SegWord/.packlist
Appending installation info to /usr/lib/perl5/5.8.8/i386-linux-thread-multi/perllocal.pod


找不到libstdc++的库?

[root@develop242 SegWord]# perl test.pl
Can't load '/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/SegWord/SegWord.so' for module SegWord: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/auto/SegWord/SegWord.so: undefined symbol: _ZNSsD1Ev at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/XSLoader.pm line 70.
at /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi/SegWord.pm line 31
Compilation failed in require at test.pl line 2.
BEGIN failed--compilation aborted at test.pl line 2.
[root@develop242 SegWord]#

论坛徽章:
0
4 [报告]
发表于 2007-08-11 20:01 |只看该作者
1 #!/usr/bin/perl
  2 use SegWord;
  3
  4 $str = SegWord::cut_cut_word("招聘中国");
  5 print $str;

测试的perl代码

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
5 [报告]
发表于 2007-08-11 20:05 |只看该作者
不了解你的环境。
你可以自己检查一下下面两个命令的参数有没有什么不对的地方。
  1. gcc -c  -I. -I/usr/include/ -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables   -DVERSION=\"0.01\" -DXS_VERSION=\"0.01\" -fPIC "-I/usr/lib/perl5/5.8.8/i386-linux-thread-multi/CORE"   SegWord.c
复制代码
  1. gcc  -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -L/usr/local/lib SegWord.o  -o blib/arch/auto/SegWord/SegWord.so       \
  2.            -ldict
复制代码

论坛徽章:
0
6 [报告]
发表于 2007-08-13 11:56 |只看该作者
解决了,
主要是使用了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 );
~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP