mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
add ${PYPY_OPTS} to specify pypy build options
This commit is contained in:
parent
56a9a7cebf
commit
924f6dc76d
1 changed files with 2 additions and 2 deletions
|
@ -584,9 +584,9 @@ build_package_pypy() {
|
||||||
|
|
||||||
build_package_pypy_builder() {
|
build_package_pypy_builder() {
|
||||||
if [ -f "rpython/bin/rpython" ]; then # pypy 2.x
|
if [ -f "rpython/bin/rpython" ]; then # pypy 2.x
|
||||||
python "rpython/bin/rpython" -Ojit "pypy/goal/targetpypystandalone.py" >&4 2>&1
|
python "rpython/bin/rpython" ${PYPY_OPTS:-"-Ojit"} "pypy/goal/targetpypystandalone.py" >&4 2>&1
|
||||||
elif [ -f "pypy/translator/goal/translate.py" ]; then # pypy 1.x
|
elif [ -f "pypy/translator/goal/translate.py" ]; then # pypy 1.x
|
||||||
( cd "pypy/translator/goal" && python "translate.py" --opt=jit "targetpypystandalone.py" ) 1>&4 2>&1
|
( cd "pypy/translator/goal" && python "translate.py" ${PYPY_OPTS:-"--opt=jit"} "targetpypystandalone.py" ) 1>&4 2>&1
|
||||||
else
|
else
|
||||||
echo "not a pypy source tree" 1>&3
|
echo "not a pypy source tree" 1>&3
|
||||||
return 1
|
return 1
|
||||||
|
|
Loading…
Reference in a new issue