![](https://secure.gravatar.com/avatar/858a999ea4bef9fbdd234bed8b7bff77.jpg?s=120&d=mm&r=g)
Hi, When I compile PyPy in the "goal" folder, I compile it with the following options: pypy ../../rpython/bin/rpython --opt=2 Is this the proper way to compile pypy without JIT, or am I doing something wrong? Thanks, Frank
![](https://secure.gravatar.com/avatar/779e1633fecdd62c4c386fc953c5d3ec.jpg?s=120&d=mm&r=g)
Hi Frank, On 20 January 2017 at 05:05, Frank Wang <frankw@mit.edu> wrote:
When I compile PyPy in the "goal" folder, I compile it with the following options:
pypy ../../rpython/bin/rpython --opt=2
Is this the proper way to compile pypy without JIT, or am I doing something wrong?
That's correct. http://pypy.org/download.html#building-from-source specifies "-O2" instead of "--opt=2", but they are fully equivalent. And the 'targetpypystandalone.py' part is optional unless you want to give more PyPy-specific options afterwards. A bientôt, Armin.
participants (2)
-
Armin Rigo
-
Frank Wang