[Python-checkins] python/dist/src/Lib/distutils emxccompiler.py, 1.10, 1.11

aimacintyre at users.sourceforge.net aimacintyre at users.sourceforge.net
Tue Dec 2 07:18:02 EST 2003


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1:/tmp/cvs-serv2895

Modified Files:
	emxccompiler.py 
Log Message:
use same compiler switches as core for extensions

Index: emxccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/emxccompiler.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** emxccompiler.py	14 Nov 2002 02:25:41 -0000	1.10
--- emxccompiler.py	2 Dec 2003 12:17:59 -0000	1.11
***************
*** 64,69 ****
          # Hard-code GCC because that's what this is all about.
          # XXX optimization, warnings etc. should be customizable.
!         self.set_executables(compiler='gcc -Zomf -Zmt -O2 -Wall',
!                              compiler_so='gcc -Zomf -Zmt -O2 -Wall',
                               linker_exe='gcc -Zomf -Zmt -Zcrtdll',
                               linker_so='gcc -Zomf -Zmt -Zcrtdll -Zdll')
--- 64,69 ----
          # Hard-code GCC because that's what this is all about.
          # XXX optimization, warnings etc. should be customizable.
!         self.set_executables(compiler='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall',
!                              compiler_so='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall',
                               linker_exe='gcc -Zomf -Zmt -Zcrtdll',
                               linker_so='gcc -Zomf -Zmt -Zcrtdll -Zdll')





More information about the Python-checkins mailing list