diff options
author | Georg Brandl <georg@python.org> | 2010-07-12 09:00:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-12 09:00:29 (GMT) |
commit | 4abda5488913bee68c83bb00ae1812f99a013b93 (patch) | |
tree | 39f5a7407fa689b3ef862dbd22f74092834f73b8 | |
parent | b5085d8df4d41b9cd37394413e3ebbd075a204f0 (diff) | |
download | cpython-4abda5488913bee68c83bb00ae1812f99a013b93.zip cpython-4abda5488913bee68c83bb00ae1812f99a013b93.tar.gz cpython-4abda5488913bee68c83bb00ae1812f99a013b93.tar.bz2 |
Take care of duplicate target name warnings.
-rw-r--r-- | Doc/faq/extending.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/faq/extending.rst b/Doc/faq/extending.rst index 856b1c6..737ef7c 100644 --- a/Doc/faq/extending.rst +++ b/Doc/faq/extending.rst @@ -29,6 +29,8 @@ function that is going to be called by the Python interpreter. Global or static C++ objects with constructors are probably not a good idea. +.. _c-wrapper-software: + Writing C is hard; are there any alternatives? ---------------------------------------------- @@ -200,11 +202,7 @@ begin by reading :ref:`the "Extending and Embedding" document whole lot of difference between C and C++ -- so the strategy of building a new Python type around a C structure (pointer) type will also work for C++ objects. -For C++ libraries, you can look at `SIP -<http://www.riverbankcomputing.co.uk/software/sip/>`_, `CXX -<http://cxx.sourceforge.net/>`_, `Boost -<http://www.boost.org/libs/python/doc/index.html>`_, `Weave -<http://www.scipy.org/Weave>`_ or `SWIG <http://www.swig.org>`_ +For C++ libraries, see :ref:`c-wrapper-software`. I added a module using the Setup file and the make fails; why? |