[issue16296] Patch to fix building on Win32/64 under VS 2010

2019-09-11 Thread Steve Dower
Change by Steve Dower : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2019-02-24 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16296] Patch to fix building on Win32/64 under VS 2010

2015-08-12 Thread Ralf Gommers
Ralf Gommers added the comment: I'll note that in Numpy we have now worked around the issue (with https://github.com/numpy/numpy/pull/4892), basically by monkeypatching distutils and doing: if '/MANIFEST' not in ldflags: ldflags.append('/MANIFEST') The bug report is still valid

[issue16296] Patch to fix building on Win32/64 under VS 2010

2015-08-11 Thread Mark Lawrence
Mark Lawrence added the comment: I think this can now be closed as out of date. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2015-08-11 Thread Steve Dower
Steve Dower added the comment: It doesn't apply to 3.5 or later, so it's up to Martin whether he wants to apply it for 3.4. (I suspect not, but I'm not about to preempt his call.) -- versions: -Python 3.5 ___ Python tracker rep...@bugs.python.org

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-07-04 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- nosy: -brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___ Python-bugs-list

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-07-03 Thread irdb
Changes by irdb dalba.w...@gmail.com: -- nosy: +irdb ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___ Python-bugs-list mailing list

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-06-27 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: -- components: +Distutils -Build, Windows nosy: +dstufft, eric.araujo -zach.ware status: languishing - open type: compile error - behavior versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-06-27 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-06-20 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody reset the status to open please. -- nosy: +BreamoreBoy, steve.dower, zach.ware ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-03-17 Thread Max Naumov
Max Naumov added the comment: Wouldn't this be more correct? --- Lib/distutils/msvc9compiler.py 2013-08-03T16:17:08+04:00 +++ Lib/distutils/msvc9compiler.py 2014-03-17T18:36:50.078672+04:00 @@ -411,7 +411,11 @@ '/Z7', '/D_DEBUG']

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-03-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: What is the procedure to test this patch? Under what circumstances exactly is it needed? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-03-17 Thread Max Naumov
Max Naumov added the comment: It allows to install numpy on windows python 3.4. Just like the patch in the original post. Actually my patch is merely the original patch refactored. -- ___ Python tracker rep...@bugs.python.org

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Paul Moore
Paul Moore added the comment: Is there any chance this can be included in Python 3.4? It would apparently allow numpy to be built with stock tools on Windows Python. -- nosy: +pmoore ___ Python tracker rep...@bugs.python.org

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Tim Golden
Tim Golden added the comment: Larry Hastings would have to rule on whether it could get into 3.4 at this stage. Paul: are you in a position to apply / test the patch? I've done no more than glance at it but it looks, from the comments, as though it doesn't apply cleanly. --

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Paul Moore
Paul Moore added the comment: Unfortunately not really - it's the numpy guys that need this, so hopefully the original poster can comment. I'll see if I can hand-patch the relevant files and do a pip install numpy to see if it fixes that specific scenario. I'll report back. I've added Larry

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Paul Moore
Paul Moore added the comment: Sigh. Looks like it doesn't fix the issue of building numpy - plus it doesn't apply cleanly. My apologies for the noise, I'll report the issues with the patch back on the numpy issue where I was told about this patch. --

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Larry Hastings
Larry Hastings added the comment: I'm not sure I need to be on this issue. As a rule, Windows build concerns for 3.4 are delegated to Martin von Lowis. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Tim Golden
Tim Golden added the comment: Thanks, Larry. Martin's already nosy this issue, but really we need to see if we have a viable patch before making decisions about 3.4. I'll take you off the nosy list. -- ___ Python tracker rep...@bugs.python.org

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- nosy: -larry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___ Python-bugs-list mailing

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Thomas Heller
Thomas Heller added the comment: Hm, what's the problem? For me, the patch applies cleanly (in Python 3.4.0b3, 32-bit and 64-bit on Windows), and py -3.4(-32) -m pip install numpy works correctly. At least py -3.4(-32) -c import numpy; print(numpy.__version__) prints 1.8.0. This is with

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-04 Thread Paul Moore
Paul Moore added the comment: Maybe it's not applicable to 3.3 somehow, which is what I tried. I applied the patch to the distutils in the system installed Python, then ran pip install numpy from a virtualenv. It's quite possible that a million things could have gone wrong in that process -

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-02-03 Thread Ralf Gommers
Changes by Ralf Gommers ralf.gomm...@gmail.com: -- nosy: +ralf.gommers ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2013-11-17 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- status: open - languishing ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2013-08-29 Thread Trent Nelson
Changes by Trent Nelson tr...@snakebite.org: -- nosy: +trent ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___ Python-bugs-list mailing

[issue16296] Patch to fix building on Win32/64 under VS 2010

2013-08-29 Thread Trent Nelson
Changes by Trent Nelson tr...@snakebite.org: -- versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-11-16 Thread Christoph Gohlke
Changes by Christoph Gohlke cgoh...@uci.edu: -- nosy: +cgohlke ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___ ___ Python-bugs-list

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-11-16 Thread Martin v . Löwis
Martin v. Löwis added the comment: Why did you put 3.2 into the version list? 3.2 doesn't use VS 2010. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-10-21 Thread Silverback Networks
New submission from Silverback Networks: Once I got my broken environment fixed, this was the only thing that didn't work. The bug is that VS 2010 no longer creates a manifest by default, despite the documentation, and there are confirmation posts around the internet. /Manifest has to be

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-10-21 Thread Silverback Networks
Silverback Networks added the comment: oops, add _debug on the second part of the patch. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16296 ___

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-10-21 Thread Christian Heimes
Christian Heimes added the comment: Can you please upload a proper patch files? It makes code review and applying the patch easier for us. -- components: +Windows keywords: +3.3regression nosy: +christian.heimes stage: - patch review versions: -Python 3.1

[issue16296] Patch to fix building on Win32/64 under VS 2010

2012-10-21 Thread Silverback Networks
Silverback Networks added the comment: Sure. I got this patch from Mercurial, just in case, but it looks the same. -- keywords: +patch Added file: http://bugs.python.org/file27648/msvc9manifest.diff ___ Python tracker rep...@bugs.python.org

[issue16296] Patch to fix building on Win32/64 under VS 2010

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