Éric Araujo added the comment:
Distutils does not evolve anymore — if CFFI still needs something like this, I
think it should build on setuptools and request features there.
--
resolution: -> wont fix
stage: -> resolved
status: open -> closed
___
New submission from Stefan Seefeld:
I'm trying to use the distutil compiler to preprocess some header (to be used
with the cffi package).
The code is
compiler = distutils.ccompiler.new_compiler()
compiler.add_include_dir(join(sys.prefix, 'include'))
compiler.preprocess(source)
This