Hi Michal, On Thu, Aug 8, 2013 at 3:39 PM, Michal Vyskocil <[email protected]> wrote: > It seems that > __pycache__ is not created during a build, but on runtime, so my attempt > to build pypy using pypy ends on > > [ 66s] IOError: [Errno 2] No such file or directory: > '/usr/lib64/pypy-2.1/lib_pypy/__pycache__/_cffi__g7019d5d3xad93c709.c'
I'm not sure, but I would believe the problem to be different: it's *expected* that there is no directory __pycache__ there. What the error message is telling you is that some module from .../pypy-2.1/lib_pypy/ did not have its CFFI part correctly compiled at installation. Can you find out which module it is? E.g. it should be in the traceback. A bientôt, Armin. _______________________________________________ pypy-dev mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-dev
