Commit 1f5c13ed authored by Robert Bradshaw's avatar Robert Bradshaw

Add stdc++ library to example (sometimes it seems to be required).

parent eae0c4c4
......@@ -109,7 +109,7 @@ to add a keyword to your Extension construction statement, as in::
["rectangle.pyx", "Rectangle.cpp"], # filename of our Cython source
language="c++", # this causes Cython to create C++ source
include_dirs=[...], # usual stuff
libraries=[...], # ditto
libraries=["stdc++", ...], # ditto
extra_link_args=[...], # if needed
cmdclass = {'build_ext': build_ext}
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment