[pypy-dev] any tutorial for compiling pypy on windows?

2012-07-30 Thread gelin yan
Hi All I spent almost three hours for compiling pypy on my windows 7 and got nothing. During the period of translating, I saw many errors about no file "expat.h", "zlib.h" sth like that. I have tried to located those files on different paths but it still failed. I have searched on google

Re: [pypy-dev] pypy-dev Digest, Vol 15, Issue 33

2012-07-30 Thread Robert Grosse
obscure. > > At least I want to know where I can locate those third-party > dependencies correctly so that translator can find them.Thanks. > > Regards > > gelin yan > -- next part -- > An HTML attachment was scrubbed... > URL: < > h

Re: [pypy-dev] pypy-dev Digest, Vol 15, Issue 33

2012-07-30 Thread gelin yan
e files on >> different paths but it still failed. >> >> I have searched on google a bit however there is only one post which >> give a brief introduction how to compile pypy 1.4 on windows. It is kinda >> outdated and obscure. >> >>

Re: [pypy-dev] pypy-dev Digest, Vol 15, Issue 33

2012-07-30 Thread Matti Picus
Searching for "pypy windows compile" on google gave me this link as the top result, which is indeed the latest and greatest instructions for compiling on Windows: http://pypy.readthedocs.org/en/latest/windows.html Please let us know if the instructions are unclear, suggested modifications would

Re: [pypy-dev] any tutorial for compiling pypy on windows?

2012-07-30 Thread Chris Lambacher
It's been a while since I set this up, so I'm hazy on some of the details. Pypy builds on windows may look for dependencies in other locations but the way I had recommended to me and which worked was parallel to the pypy checkout. For example I have: c:\work\pypy | |- bzip2-1.0.5

[pypy-dev] __pycache__ folders

2012-07-30 Thread Marcus Smith
Hello: I'm working on trying to get the pip test suite passing for pypy. I need to figure out the mechanism that turns on/off the use of __pycache__ folders. locally in my pypy v1.9 install, I only see normal *.pyc files for installed distributions. In Travis service builds which also reports v1

Re: [pypy-dev] __pycache__ folders

2012-07-30 Thread Benjamin Peterson
2012/7/30 Marcus Smith : > Hello: > > I'm working on trying to get the pip test suite passing for pypy. > I need to figure out the mechanism that turns on/off the use of > __pycache__ folders. > locally in my pypy v1.9 install, I only see normal *.pyc files for installed > distributions. > In Trav

Re: [pypy-dev] __pycache__ folders

2012-07-30 Thread Matti Picus
IMHO, *.pyc files should not be distributed with a binary pypy. This is probably an issue for the team who supply the pypy for travis-ci.org (since the __pycache__ files do not appear in the nightly or release builds on pypy.org) - I think they live at https://launchpad.net/~pypy

Re: [pypy-dev] __pycache__ folders

2012-07-30 Thread Marcus Smith
let me explain some more. I have may have thrown people with my use of "distribution". I just meant installed packages that you get from pypi or wherever, not the pypy distribution itself. e.g. one of our nose test cases installs and then uninstalls INITools (from pypi) it's not expecting to find

Re: [pypy-dev] any tutorial for compiling pypy on windows?

2012-07-30 Thread gelin yan
On Tue, Jul 31, 2012 at 7:52 AM, Chris Lambacher wrote: > It's been a while since I set this up, so I'm hazy on some of the details. > > Pypy builds on windows may look for dependencies in other locations but > the way I had recommended to me and which worked was parallel to the pypy > checkout. F