In article <4dbdcff5.5050...@xs4all.nl>,
Irmen de Jong wrote:
> I recently ran into a problem installing a module because it needed to
> compile an
> extension written in C. The compilation failed because the c extension needed
> a header
> file+lib that gcc could not find. This was caused by t
Hi,
I recently ran into a problem installing a module because it needed to compile
an
extension written in C. The compilation failed because the c extension needed a
header
file+lib that gcc could not find. This was caused by the fact that distutils
was adding
a '-isysroot' parameter to the gcc
I get the following error when trying to run my app when built with
py2app and python 2.7.
File "crcmod/__init__.pyc", line 7, in
ImportError: No module named predefined
The app works fine when built with Python 2.5 or Python 2.6.
It seems the folks in py2exe land are having the same