包含用于Boost.Python的Bjam的系统库

时间:2013-12-02 06:20:12

标签: c++ boost-python boost-bjam

这可能是一个非常基本的问题,但我无法在任何地方找到解决方案。我正在使用Boost.Python在C ++中构建Python扩展,并且需要将我的项目与libpcap链接,但我指定的任何内容似乎都将bjam指向正确的位置。 Pcap当前安装到 / usr / local / include (OS X 10.9),我可以使用XCode,Make或任何其他构建系统导入它。但是,当我尝试运行bjam时,它给出了链接器错误“架构x86_64的未定义符号”。

我通过将其他源文件添加到python-extension定义中而超过了第一轮链接器错误,但显然不能对外部库执行相同操作。这是我的bjam文件(从他们的示例中复制并稍加修改):

import python ;

if ! [ python.configured ]
{
    ECHO "notice: no Python configured in user-config.jam" ;
    ECHO "notice: will use default configuration" ;
    using python ;
}

use-project boost : ../../../Downloads/boost_1_55_0 ;

# Set up the project-wide requirements that everything uses the
# boost_python library from the project whose global ID is
# /boost/python.
project
  : requirements 
          <library>/boost/python//boost_python 
          <implicit-dependency>/boost//headers 
  : usage-requirements <implicit-dependency>/boost//headers 
  ;

python-extension pcap_ext : PacketWarrior/pcap_ext.cc PacketWarrior/PacketEngine.h PacketWarrior/PacketEngine.cc PacketWarrior/Packet.h ;

# Put the extension and Boost.Python DLL in the current directory, so
# that running script by hand works.
install convenient_copy 
  : pcap_ext
  : <install-dependencies>on <install-type>SHARED_LIB <install-type>PYTHON_EXTENSION 
    <location>. 
  ;

# A little "rule" (function) to clean up the syntax of declaring tests
# of these extension modules.
local rule run-test ( test-name : sources + )
{
    import testing ;
    testing.make-test run-pyd : $(sources) : : $(test-name) ;
}

# Declare test targets
run-test pcap : pcap_ext pcap.py ;

我确定它只是在项目要求中添加了一些东西,但语法没有我,我从{0]找到的<libary>的变体似乎都没有效果。我试图找到将 llibpcap 标志传递给GCC的等价物,但无济于事。非常感谢任何指导!

[0] - https://wiki.python.org/moin/boost.python/BuildingExtensions

1 个答案:

答案 0 :(得分:1)

想出来。当我需要动态库时,我试图链接到标题路径。我将此添加到需求规则中,bjam能够正确编译它。

<library>/usr/lib/libpcap.dylib