Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to compile a C++ extension using Swig for Mac OS X. I have run into a few linker errors though. The basic tutorial for Python Swig also seems to fail on Mac:

http://www.swig.org/Doc1.3/Python.html#Python_nn10

swig -c++ -python example.i
g++ -O2 -fPIC -c example.cxx
g++ -O2 -fPIC -c example_wrap.cxx -I/usr/include/python2.6
g++ -shared example.o example_wrap.o -o _example.so

The first three lines work fine. The last line fails with a linker error. I tried the last line on OS X with this, and got the same error:

g++ -dynamiclib example.o example_wrap.o -o _example.so

The error from the last line is:

Undefined symbols for architecture x86_64:
  "_PyArg_ParseTuple", referenced from:
      __wrap_fact in example_wrap.o
  "_PyArg_UnpackTuple", referenced from:
      _SwigPyObject_own in example_wrap.o
  "_PyBool_FromLong", referenced from:
      _SwigPyObject_richcompare in example_wrap.o
      _SwigPyObject_own in example_wrap.o
...
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

Thanks.

share|improve this question
2  
-lpython at the end of the compile line should address the linking issue, but Mac shared objects have the extension .dylib – Petesh Feb 8 at 23:27
Thanks, @Petesh -- that works! I was getting hung up on a different issue with my main Swig code (undefined symbols for some functions, which I commented out in the swig.i file). Basic Swig functionality works now. – Nicholas S. Feb 9 at 3:11

closed as too localized by Flexo, Shai, burning_LEGION, Kuf, Soner Gönül Feb 10 at 18:05

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 1 down vote accepted

For completeness -- thanks Petesh.

swig -c++ -python example.i
g++ -O2 -fPIC -c example.cxx
g++ -O2 -fPIC -c example_wrap.cxx -I/usr/include/python2.6
g++ -lpython -dynamclib example.o example_wrap.o -o _example.so
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.