我使用cython为C ++项目提供Python包装器。为此,我将C ++项目构建为静态库,并在Cython setup.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_args
添加extra_compile_args
无论如何都没有帮助。
答案 0 :(得分:2)
问题是,如果没有使用-fPIC
构建任何静态依赖项,GCC无法静态链接共享库。在这里,NetworKit是在没有-fPIC
的情况下构建的,因此您需要使用-fPIC
重建静态NetworKit-Core-0或动态链接它。