[Python-checkins] CVS: distutils/doc/inst inst.tex,1.22,1.23

Greg Ward python-dev@python.org
Sat, 30 Sep 2000 14:06:43 -0700


Update of /cvsroot/python/distutils/doc/inst
In directory slayer.i.sourceforge.net:/tmp/cvs-serv815

Modified Files:
	inst.tex 
Log Message:
Added skeletal "Building Extensions: Tips and Tricks" section.  This
is where all the FAQs about extension-building will be answered.

Index: inst.tex
===================================================================
RCS file: /cvsroot/python/distutils/doc/inst/inst.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** inst.tex	2000/09/26 02:54:43	1.22
--- inst.tex	2000/09/30 21:06:40	1.23
***************
*** 392,395 ****
--- 392,420 ----
     \end{tableiii}}
  
+ 
+ \section{Building Extensions: Tips and Tricks}
+ \label{building-ext}
+ 
+ (This is the section to read for people doing any sort of interesting
+ build.  Things to talk about:
+ \begin{itemize}
+ \item the \file{Setup} file (any platform now, but Unix-biased)
+ \item CFLAGS and LDFLAGS (must implement them first!)
+ \item using non-MS compilers on Windows (how to convert
+   Python's library, ...)  
+ \end{itemize}
+ 
+ 
+ \subsection{Tweaking compiler/linker flags}
+ \label{tweak-flags}
+ 
+ 
+ \subsection{Using non-Microsoft compilers on Windows}
+ \label{non-ms-compilers}
+ 
+ \XXX{One place to look: \url{http://www.cyberus.ca/~g_will/pyExtenDL.shtml}}
+ 
+ 
+ 
  \section{Alternate Installation}
  \label{alt-install}