increase HeapCapacity to 256MB in bootimage.cpp

This is necessary to avoid running out of memory when building
bootimages of certain apps with OpenJDK using ProGuard'ed code.
This commit is contained in:
Joel Dice 2011-07-17 19:45:58 -06:00
parent f6d489ff88
commit 20091031da

View File

@ -23,7 +23,7 @@ using namespace vm;
namespace {
const unsigned HeapCapacity = 128 * 1024 * 1024;
const unsigned HeapCapacity = 256 * 1024 * 1024;
// Notes on immutable references in the heap image:
//