13 Dec 2010 15:03
Linking against static library in specific path
Nahuel Defossé <nahuel.defosse <at> gmail.com>
2010-12-13 14:03:16 GMT
2010-12-13 14:03:16 GMT
I'm trying to wrap some existing C++ code which is compiled and bundled in static .a libraries.
I've followed the guide exposed at http://wiki.cython.org/WrappingCPlusPlus and I wrote down this
setup.py file:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'ipcbus',
ext_modules=[
Extension("ipcbus",
sources=["ipcbus.pyx", "../lib/ipcbus/ipcbus_message.cpp"], # Note, you can link against a c++ library instead of including the source
include_dirs=["../lib/ipcbus"],
libraries = ["../lib/ipcbus.a",],
#extra_link_args = ["../lib/libipcbus.a",],
language="c++"),
],
cmdclass = {'build_ext': build_ext},
)
Am I getting something wrong? libipcbus.a is a static lib, and though it compiles fine, I get some undefined symbols errors.
The library, as the above text shows is located in ../lib/.
Thanks
RSS Feed