[Python-checkins] python/dist/src/Lib/distutils cygwinccompiler.py, 1.24, 1.25

perky at users.sourceforge.net perky at users.sourceforge.net
Sat Jun 5 14:37:55 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16521/Lib/distutils

Modified Files:
	cygwinccompiler.py 
Log Message:
SF #877165: Give an info about what C++ compiler command should be
used in cygwin and mingw32. (Reported by Michael Droettboom)


Index: cygwinccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/cygwinccompiler.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** cygwinccompiler.py	14 Apr 2003 12:51:26 -0000	1.24
--- cygwinccompiler.py	5 Jun 2004 18:37:53 -0000	1.25
***************
*** 109,112 ****
--- 109,113 ----
          self.set_executables(compiler='gcc -mcygwin -O -Wall',
                               compiler_so='gcc -mcygwin -mdll -O -Wall',
+                              compiler_cxx='g++ -mcygwin -O -Wall',
                               linker_exe='gcc -mcygwin',
                               linker_so=('%s -mcygwin %s' %
***************
*** 296,299 ****
--- 297,301 ----
          self.set_executables(compiler='gcc -mno-cygwin -O -Wall',
                               compiler_so='gcc -mno-cygwin -mdll -O -Wall',
+                              compiler_cxx='g++ -mno-cygwin -O -Wall',
                               linker_exe='gcc -mno-cygwin',
                               linker_so='%s -mno-cygwin %s %s'




More information about the Python-checkins mailing list