[pywin32-checkins] pywin32 setup.py,1.59,1.60
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-06-03 14:37:52
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16048 Modified Files: setup.py Log Message: enable x64 warnings unless it is a quiet build. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** setup.py 24 May 2007 12:50:50 -0000 1.59 --- setup.py 3 Jun 2007 14:37:53 -0000 1.60 *************** *** 732,735 **** --- 732,738 ---- if is_32bit: ext.extra_compile_args.append("/YX"+ext.pch_header) + # if we are a verbose build, allow 64bit warnings + if self.distribution.verbose: + ext.extra_compile_args.append("/Wp64") pch_name = os.path.join(self.build_temp, ext.name) + ".pch" ext.extra_compile_args.append("/Fp"+pch_name) |