[issue7546] msvc9compiler.py: add .asm extension

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If

[issue7546] msvc9compiler.py: add .asm extension

2015-07-28 Thread Stefan Krah
Stefan Krah added the comment: The workaround is telling users to run e.g. ``vcvarsall x64'' before the build. setup.py then contains extra_objects = ['vcdiv64.obj'] os.system(ml64 /c /Cx vcdiv64.asm), which is run before creating the extension. The extension itself contains

[issue7546] msvc9compiler.py: add .asm extension

2015-07-27 Thread Stefan Krah
Stefan Krah added the comment: Steve, this issue has been open for a while: Do you have an opinion on whether this is useful to have? I originally opened the issue because I am using masm in cdecimal, but there are workarounds. -- nosy: +skrah, steve.dower

[issue7546] msvc9compiler.py: add .asm extension

2015-07-27 Thread Steve Dower
Steve Dower added the comment: I'm not against adding the support (to 3.6), though I'd be interested in what the workarounds are and whether it'd be more useful as an example (e.g. here's how to support a special build step vs. all special build steps need to be merged into core). There are

[issue7546] msvc9compiler.py: add .asm extension

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___ ___ Python-bugs-list

[issue7546] msvc9compiler.py: add .asm extension

2014-03-13 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- assignee: tarek - components: +Distutils -Distutils2 versions: +Python 3.5 -3rd party ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2011-05-03 Thread Zooko O'Whielacronx
Zooko O'Whielacronx zo...@zooko.com added the comment: I got a bug report from a user that they encountered this error: http://tahoe-lafs.org/pipermail/tahoe-dev/2011-April/006312.html Then a follow-up in which they say they applied the patch from http://bugs.python.org/issue8597 (this ticket

[issue7546] msvc9compiler.py: add .asm extension

2011-05-03 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: The poster should get the same error messages from: ml64 /c /Cx x64dll.asm Perhaps the assembly isn't MASM? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546

[issue7546] msvc9compiler.py: add .asm extension

2011-05-03 Thread Zooko O'Whielacronx
Zooko O'Whielacronx zo...@zooko.com added the comment: Thanks, Stefan Krah. I posted your comment to the tahoe-dev mailing list: http://tahoe-lafs.org/pipermail/tahoe-dev/2011-May/006336.html Also Samuel Neves has posted on that thread. -- ___

[issue7546] msvc9compiler.py: add .asm extension

2011-02-13 Thread Alexis Metaireau
Changes by Alexis Metaireau ale...@notmyidea.org: -- nosy: +alexis ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___ ___ Python-bugs-list

[issue7546] msvc9compiler.py: add .asm extension

2010-09-29 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- versions: +3rd party -Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: Removed file: http://bugs.python.org/file18681/vcasm2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Minor cleanups in vcasm2.patch. -- Added file: http://bugs.python.org/file18742/vcasm2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: Removed file: http://bugs.python.org/file18742/vcasm2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: Further cleanup (sorry for the mail volume!). -- Added file: http://bugs.python.org/file18743/vcasm2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: +brian.curtin, sneves, zooko versions: -Python 2.5, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2010-09-04 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: (distutils2 bugs have all versions set) -- versions: +Python 2.5, Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2010-09-03 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +josip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___ ___ Python-bugs-list mailing list

[issue7546] msvc9compiler.py: add .asm extension

2010-08-30 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: I have a new patch with tests, but I'm not quite satisfied with it. The remaining problem is that the choice of ml64 or ml is fragile if a user has executed `vcvarsall xyz`, and we attempt to use the resulting environment. For example,

[issue7546] msvc9compiler.py: add .asm extension

2010-08-30 Thread Stefan Krah
Stefan Krah stefan-use...@bytereef.org added the comment: For Visual Studio Express this issue depends on issue 7511. -- dependencies: +msvc9compiler.py: ValueError: [u'path'] ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546

[issue7546] msvc9compiler.py: add .asm extension

2010-08-23 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: To me distutils does not support assembler files and for other compilers this is required to build ctypes - see also issue 2942. -- nosy: +rpetrov ___ Python tracker rep...@bugs.python.org

[issue7546] msvc9compiler.py: add .asm extension

2010-08-23 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: To me distutils does not support assembler files Do you think it should? and for other compilers this is required to build ctypes Sorry, I don’t understand. Can you rephrase? -- ___ Python tracker

[issue7546] msvc9compiler.py: add .asm extension

2010-08-23 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: Please see my comments to issue 2942 - so I think compilers should support assembler suffixes. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546

[issue7546] msvc9compiler.py: add .asm extension

2010-08-20 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Could you add tests? There are helpers in distutils2.tests.support than deal with temporary files, and we use unittest2 which provides decorators to skip the tests on non-Windows. -- nosy: +eric.araujo versions: +Python 2.5, Python 2.6,

[issue7546] msvc9compiler.py: add .asm extension

2010-05-02 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: Distutils is frozen, switching to distutils2 -- components: +Distutils2 -Distutils ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___

[issue7546] msvc9compiler.py: add .asm extension

2009-12-19 Thread Stefan Krah
New submission from Stefan Krah stefan-use...@bytereef.org: Hi, would it be possible to add .asm to the extensions? I attach a diff that I have tested with VS Express. -- files: vcasm.diff keywords: patch messages: 96614 nosy: skrah severity: normal status: open title:

[issue7546] msvc9compiler.py: add .asm extension

2009-12-19 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: - tarek components: +Distutils nosy: +tarek priority: - normal stage: - patch review versions: +Python 2.7 -Python 3.1 ___ Python tracker rep...@bugs.python.org