Message131354
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 did contain the include dirs, so this seems to be a regression:
>>> distutils.sysconfig.get_config_var('PY_CFLAGS')
'-g -O2 -g -Wall -Wstrict-prototypes -I. -IInclude -I./Include -DPy_BUILD_CORE' |
|
Date |
User |
Action |
Args |
2011-03-18 18:47:19 | pitrou | set | recipients:
+ pitrou, tarek, eric.araujo |
2011-03-18 18:47:19 | pitrou | set | messageid: <1300474039.66.0.607700128709.issue11600@psf.upfronthosting.co.za> |
2011-03-18 18:47:17 | pitrou | link | issue11600 messages |
2011-03-18 18:47:17 | pitrou | create | |
|