Re: [pypy-dev] Support for current versions of Pypy on Heroku and Cloud Foundry platforms?

2014-07-16 Thread cclauss
Hi Folks, The plan is to support Pypy on Heroku, but we need to have full libffi support before we move forward. As it stands, the following formulas produce a broken version of PyPy and Pypy3. Does anyone on this list have the required skills to suggest a working solution? https://github

Re: [pypy-dev] Support for current versions of Pypy on Heroku and Cloud Foundry platforms?

2014-07-16 Thread Armin Rigo
Hi Chris, On 16 July 2014 14:29, cclauss wrote: > The plan is to support Pypy on Heroku, but we need to have full libffi > support before we move forward. What does this mean, exactly? You don't provide libffi on your build system, and so PyPy cannot be built there? A bientôt, Armin. ___

Re: [pypy-dev] Dispatch on type

2014-07-16 Thread Armin Rigo
Hi, On 15 July 2014 19:11, Elefterios Stamatogiannakis wrote: > Above code gets hit millions of times with different variable types. So in > our case all paths are compiled and we are linear. > > Another idea that i have is the following. At startup i could sort all the > hash(types), create (in

Re: [pypy-dev] Support for current versions of Pypy on Heroku and Cloud Foundry platforms?

2014-07-16 Thread cclauss
Hi Armin, The way to think about cloud application platforms like Heroku, Bluemix, and Cloud Foundry is that they provide you with a working Linux box and little else. Therefore you use a "buildpack" (like an install script) to bundle up all your executable environment, libraries, and code