[issue11600] PY_CFLAGS and PY_CPPFLAGS inconsistent

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 y

[issue11600] PY_CFLAGS and PY_CPPFLAGS inconsistent

2012-06-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PY_CFLAGS (C compiler flags) always used with PY_CPPFLAGS (C preprocessor flags). The include directories need for #include, so it is logical that PY_CPPFLAGS did contain them. This may be useful if you use C preprocessor without C compiler. I don't think t

[issue11600] PY_CFLAGS and PY_CPPFLAGS inconsistent

2011-03-25 Thread Éric Araujo
Éric Araujo added the comment: Ditto for sysconfig. -- nosy: +benjamin.peterson, jcea, ronaldoussoren ___ Python tracker ___ ___ Pyth

[issue11600] PY_CFLAGS and PY_CPPFLAGS inconsistent

2011-03-18 Thread Antoine Pitrou
New submission from Antoine Pitrou : One contains the include dirs for Python, not the other: >>> distutils.sysconfig.get_config_var('PY_CFLAGS') '-g -O0 -Wall -Wstrict-prototypes' >>> distutils.sysconfig.get_config_var('PY_CPPFLAGS') '-I. -IInclude -I./Include' In Python 2.7 and 3.1, PY_CFLAGS