6

我问了另一个问题,这个问题对于一个直接的答案来说有点太复杂了,所以我把它归结为这个基本问题......

当我aModule.so使用标准 cython distutils 构建我的时,它似乎没有链接到libpython

$ otool -L aModule.so
aModule.so:
    /usr/local/lib/libboost_thread-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/local/opt/thrift/lib/libthrift-0.9.0.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.11)

但是当我使用 cmake 设置构建时,它会不断生成链接libpython到 .so 的链接器命令:

$ otool -L aModule.so 
aModule.so:
    /System/Library/Frameworks/Python.framework/Versions/2.7/Python (compatibility version 2.7.0, current version 2.7.1)
    /usr/local/opt/thrift/lib/libthrift-0.9.0.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/local/lib/libboost_thread-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
    /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 52.0.0)
    /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.1.0)

distutils 生成的模块似乎适用于我的任何 python2.7 安装(系统或我的项目的 virtualenv)。而当我尝试使用除链接系统 python 之外的任何内容导入 cmake 时,cmake 会因版本不匹配而崩溃。

为什么 distutils 模块没有链接就可以正常工作?如果是这样的话,为什么我需要让 cmake 构建链接 libpython,如果是这样,我怎么能阻止它,以便它与我的任何 python2.7 解释器一起工作而不会崩溃?

目前我可以使用以下命令将 cmake 指向正确的 python:CXX=g++ cmake -DPYTHON_LIBRARY=/path/to/another/Python

4

1 回答 1

5

我意识到问题的根源与 libpythoncython-cmake-example以及它的UseCython.cmake cython_add_module()函数如何将库显式链接到 libpython 有关。

由于我不知道这是否是一个完全可移植的解决方案,我最终为自己使用做了什么,我在该函数中添加了一个标志来表示DYNAMIC_LOOKUP

function( cython_add_module _name _dynamic_lookup )
  set( pyx_module_sources "" )
  set( other_module_sources "" )
  foreach( _file ${ARGN} )
    if( ${_file} MATCHES ".*\\.py[x]?$" )
      list( APPEND pyx_module_sources ${_file} )
    else()
      list( APPEND other_module_sources ${_file} )
    endif()
  endforeach()
  compile_pyx( ${_name} generated_file ${pyx_module_sources} )
  include_directories( ${PYTHON_INCLUDE_DIRS} )
  python_add_module( ${_name} ${generated_file} ${other_module_sources} )
  ### Added here ##
  if( ${_dynamic_lookup} )
    message( STATUS "Not linking target ${_name} against libpython" )
    set_target_properties( ${_name} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
  else()
    target_link_libraries( ${_name} ${PYTHON_LIBRARIES} )
  endif()
endfunction()

现在我可以打电话cython_add_module了,它不会链接到 libpython。

于 2013-03-23T19:55:58.410 回答