This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wplappert
Recipients georg.brandl, wplappert
Date 2008-10-22.14:11:54
SpamBayes Score 0.0012000984
Marked as misclassified No
Message-id <1224684717.3.0.110027961744.issue4173@psf.upfronthosting.co.za>
In-reply-to
Content
I seen this issue at various places, but I will quote from extending.pdf:
Chapter 3: 'Building C and C++ Extensions with distutils' shows two long
gcc commands.

gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -DMAJOR_VERSION=1
-DMINOR_VERSION=0 -I/usr/local/include -I/usr/local/include/python2.2 -c
demo.c -o build/temp.linux-i686-2.2/demo.o

gcc -shared build/temp.linux-i686-2.2/demo.o -L/usr/local/lib -ltcl83 -o
build/lib.linux-i686-2.2/demo.so

The HTML version at http://docs.python.org/extending/building.html uses
a slider to be able to see all the code, but the PDF-version does not
have this feature. Consequently, the text is chopped off at the right
hand side after the 98th character.
History
Date User Action Args
2008-10-22 14:11:57wplappertsetrecipients: + wplappert, georg.brandl
2008-10-22 14:11:57wplappertsetmessageid: <1224684717.3.0.110027961744.issue4173@psf.upfronthosting.co.za>
2008-10-22 14:11:55wplappertlinkissue4173 messages
2008-10-22 14:11:54wplappertcreate