[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

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

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

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

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2014-07-09 Thread Mark Lawrence
Mark Lawrence added the comment: I think this is a bug but on the other hand I found msg94327 extremely confusing. Would someone like to clarify the situation. -- nosy: +BreamoreBoy type: - behavior versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-21 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Would this change fix an important bug, or is it a feature request? Behavior changes that don’t fix bugs don’t go into distutils. -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-21 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: -terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7182 ___ ___ Python-bugs-list

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-10 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- components: +Windows ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7182 ___ ___

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-08 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: Hi Terry, both : a) suggestion is for CFLAGS as work-around b) clarification as build use two preprocessor defines : - NDEBUG is defined for non-debug builds - _DEBUG is defined for debug builds (ref msvc{9}compiler.py) --

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Roumen, were you suggesting that this is a user rather than build issue, or just suggesting a workaround until fixed? -- nosy: +tjreedy versions: -Python 2.5, Python 2.6, Python 3.0 ___ Python

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2009-10-22 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: Ok Daniel. In this case for debug build _DEBUG has to be defined too - please check pyconfig.h from MSVC builds. May be you could use CFLAGS environment variable. -- ___ Python tracker

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2009-10-21 Thread Daniel Stutzbach
New submission from Daniel Stutzbach dan...@stutzbachenterprises.com: Currently, msvccompiler.py defines NDEBUG for non-debug builds. Unix builds do as well, via python-config. However, cygwinccompiler.py does not. -- assignee: tarek components: Distutils messages: 94315 nosy:

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2009-10-21 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: Posix build system read flags from makefile. Configure script add -DNDEBUG to OPT flag. So why cygwinccompiler.py has to set this ? Next cygwinccompiler currently is not used in python build system. -- nosy: +rpetrov

[issue7182] For non-debug builds, the cygwinccompiler.py should define NDEBUG

2009-10-21 Thread Daniel Stutzbach
Daniel Stutzbach dan...@stutzbachenterprises.com added the comment: Sorry, I should have said the mingw32 compiler, which is contained in cygwincompiler.py The mingw32 compiler is a free compiler compatible with MSVC. Since it's used with the Windows version of python, there is no configure