[pypy-svn] r49430 - pypy/dist/pypy/translator

antocuni at codespeak.net antocuni at codespeak.net
Thu Dec 6 00:22:51 CET 2007


Author: antocuni
Date: Thu Dec  6 00:22:50 2007
New Revision: 49430

Modified:
   pypy/dist/pypy/translator/driver.py
Log:
increase the maximum heap size for pypy-jvm, else microbench won't run
on tuatara



Modified: pypy/dist/pypy/translator/driver.py
==============================================================================
--- pypy/dist/pypy/translator/driver.py	(original)
+++ pypy/dist/pypy/translator/driver.py	Thu Dec  6 00:22:50 2007
@@ -734,7 +734,7 @@
         f = file(newexename, 'w')
         f.write("""#!/bin/bash
 LEDIT=`type -p ledit`
-$LEDIT java -jar $0.jar "$@"
+$LEDIT java -Xmx256m -jar $0.jar "$@"
 """)
         f.close()
         os.chmod(newexename, 0755)



More information about the Pypy-commit mailing list