在AIX系统下使用boost_regex库编译问题

报错信息:
ld: 0711-317 ERROR: Undefined symbol: .boost::re_detail_106400::perl_matcher >,boost::regex_traits > >::find()
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
make: The error code from the last command is 8.
在AIX下已经顺利编译(编译器xlC)过boost的regex库了,生成了一个对应的so文件,然后自己写了一个应用程序去调用这个regex库的函数,编译时-l链接了这个boost_regex库然后报错了,求指导,为啥,然道还要额外链接其他的而库?这个情况在linux下不会发生的。

前几天回答过一个关于库链接的问题,原因是路径问题。下面是具体编译时的运用
图片说明
http://blog.csdn.net/xiaqunfeng123/article/details/51301731
这是我看的一个关于讲库链接的blog,觉得不错,希望可以帮到你。