Re: [pypy-dev] PyPy-Sprint Leipzig 2012 sign up

2012-06-11 Thread Armin Rigo
Hi Jasper, On Mon, Jun 11, 2012 at 12:39 AM, Jasper Schulz jas...@dqi06.de wrote: So, I'm really looking forward to meet you and get my brain crushed :-). Welcome :-) Armin ___ pypy-dev mailing list pypy-dev@python.org

[pypy-dev] Pypy 1.9 with CLI and JVM backends

2012-06-11 Thread David Naylor
Hi, I'm in the process of preparing the port for FreeBSD of pypy-1.9. The patches required to run under FreeBSD are minimal (1 submittable patch, 1 specific patch not applicable for pypy). Thanks! I was just wondering on the state of CLI and JVM backends in pypy-1.9. Does translating

Re: [pypy-dev] Pypy 1.9 with CLI and JVM backends

2012-06-11 Thread Maciej Fijalkowski
On Mon, Jun 11, 2012 at 12:31 PM, David Naylor naylor.b.da...@gmail.comwrote: Hi, I'm in the process of preparing the port for FreeBSD of pypy-1.9. The patches required to run under FreeBSD are minimal (1 submittable patch, 1 specific patch not applicable for pypy). Thanks! I was just

Re: [pypy-dev] Patches for Pypy under cygwin

2012-06-11 Thread Armin Rigo
Hi, On Sun, Jun 10, 2012 at 11:12 AM, Amaury Forgeot d'Arc amaur...@gmail.com wrote: I think memory allocated for JIT must be marked with PROT_EXEC (it contains machine code), so malloc() is not an option. Exactly. On Linux it would work, because you can use mprotect() to make even