[issue15792] Fix compiler options for x64 builds on Windows

2013-10-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset c49b8bdcb5cb by Tim Golden in branch '3.3': Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth. http://hg.python.org/cpython/rev/c49b8bdcb5cb -- ___ Python tracker rep...@bugs.python.org

[issue15792] Fix compiler options for x64 builds on Windows

2013-10-28 Thread Tim Golden
Tim Golden added the comment: Applied. Thanks for the patch. -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15792

[issue15792] Fix compiler options for x64 builds on Windows

2013-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c46b1b239fe by Tim Golden in branch 'default': Issue 15792 Correct build options on Win64. Patch by Jeremy Kloth. http://hg.python.org/cpython/rev/7c46b1b239fe -- nosy: +python-dev ___ Python tracker

[issue15792] Fix compiler options for x64 builds on Windows

2013-10-24 Thread Tim Golden
Tim Golden added the comment: Retargetted patch against current tip. If no-one objects I'll commit this in the next day or two. -- assignee: - tim.golden Added file: http://bugs.python.org/file32326/pcbuild.diff.2 ___ Python tracker

[issue15792] Fix compiler options for x64 builds on Windows

2013-07-10 Thread Jeremy Kloth
Jeremy Kloth added the comment: Just to note that, as it stands, these wrongly assigned options account for 28 of the 216 warnings (or 13%) currently emitted. This is just one easy step towards a warning-free 64-bit Windows build. It would be nice to get Win64 to be one of the warning-free

[issue15792] Fix compiler options for x64 builds on Windows

2013-07-08 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- components: +Windows nosy: +christian.heimes type: - compile error ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15792 ___

[issue15792] Fix compiler options for x64 builds on Windows

2013-07-07 Thread Jeremy Kloth
Jeremy Kloth added the comment: Adding Victor Stinner as he has been quite active in fixing Windows 64-bit issues. -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15792 ___

[issue15792] Fix compiler options for x64 builds on Windows

2012-08-27 Thread Jeremy Kloth
New submission from Jeremy Kloth: The attached patch fixes the compiler options used for building the x64 platform. - In VC10 the passing /GS- as an additional option has been replaced by the MSBuild BufferSecurityCheck command - The /USECL:xxx option is only for the VSExtComp plugin for

[issue15792] Fix compiler options for x64 builds on Windows

2012-08-27 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- nosy: +loewis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15792 ___ ___ Python-bugs-list mailing

[issue15792] Fix compiler options for x64 builds on Windows

2012-08-27 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +brian.curtin, tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15792 ___ ___

[issue15792] Fix compiler options for x64 builds on Windows

2012-08-27 Thread Jeremy Kloth
Jeremy Kloth added the comment: I did forgot t mention that this change also silences a compiler warning: cl : Command line warning D9025: overriding '/GS' with '/GS-' The /USECL:xxx option does not provoke a warning is it is being evaluated as '/U SECL:xxx' (undefine macro) -- nosy: