0

我使用 cython 为 C++ 项目提供 Python 包装器。为此,我将 C++ 项目构建为静态库,并在 Cythonsetup.py脚本中链接它。这在 OSX 下工作正常,但在 Linux 下我得到以下错误:

staudt ~/workspace/NetworKit-CommunityDetection/cython $ python3 setup.py build_ext --inplace
source files: ['NetworKit.pyx']
running build_ext
skipping 'NetworKit.cpp' Cython extension (up-to-date)
building 'NetworKit' extension
g++ -DNDEBUG -fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -g -fPIC -I/usr/include/python3.2mu -c NetworKit.cpp -o build/temp.linux-x86_64-3.2/NetworKit.o -fPIC -fopenmp -std=c++11 -DNOLOG4CXX -DNOGTEST

g++ -pthread -shared build/temp.linux-x86_64-3.2/NetworKit.o -L../ -L../Core-O/ -L/usr/lib64 -lNetworKit-Core-O -lpython3.2mu -o /amd.home/home/staudt/workspace/NetworKit-CommunityDetection/cython/NetworKit.cpython-32mu.so -fopenmp -std=c++11
/usr/lib64/gcc/x86_64-suse-linux/4.7/../../../../x86_64-suse-linux/bin/ld: ..//libNetworKit-Core-O.a(PubWebGenerator.o): relocation R_X86_64_32S against `_ZTVN9NetworKit15PubWebGeneratorE' can not be used when making a shared object; recompile with -fPIC
..//libNetworKit-Core-O.a: could not read symbols: Bad value
collect2: error: ld returned 1 exit status
error: command 'g++' failed with exit status 1

这是我的setup.py

from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
from Cython.Distutils import build_ext

import os
import shutil

# try-catch block when shutil.which is not available
try:
    if (shutil.which("g++-4.8") is not None):
        os.environ["CC"] = "g++-4.8"
        os.environ["CXX"] = "g++-4.8"

    elif (shutil.which("g++-4.7") is not None):
        os.environ["CC"] = "g++-4.7"
        os.environ["CXX"] = "g++-4.7"

    else:
        print("Using: {0} and {1}".format(os.environ["CC"], os.environ["CXX"]))
except:
    os.environ["CC"] = "g++"
    os.environ["CXX"] = "g++"


srcDir = "../src"
src = ["NetworKit.pyx"] # list of source files

print("source files: {0}".format(src))

modules = [Extension("NetworKit",
                    src,
                    language = "c++",
                    extra_compile_args=["-fopenmp", "-std=c++11", "-DNOLOG4CXX", "-DNOGTEST"],
                    extra_link_args=["-fopenmp", "-std=c++11"],
                    libraries=["NetworKit-Core-O"],
                    library_dirs=["../", "../Core-O/"])]

for e in modules:
    e.cython_directives = {"embedsignature" : True}

setup(name="NetworKit",
     cmdclass={"build_ext": build_ext},
     ext_modules=modules)

(添加-fPIC,不管这意味着什么,extra_link_argsextra_compile_args没有帮助)

4

1 回答 1

2

问题是如果任何静态依赖项不是用-fPIC. 在这里,NetworKit 是在没有 的情况下构建的-fPIC,因此您需要使用重新构建静态 NetworKit-Core-0-fPIC或动态链接它。

于 2013-08-01T12:00:32.697 回答