aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Huang <weih@google.com>2012-09-04 20:55:48 -0700
committerWei Huang <weih@google.com>2012-09-04 20:55:48 -0700
commit3082b4a5fc45bc123067c9a984f90b7706704c59 (patch)
treee09899a27e60d74b8984405618c83d83083041db
parent9f606f95f03a75961498803e24bee6799a7c0885 (diff)
downloadandroid_external_proguard-3082b4a5fc45bc123067c9a984f90b7706704c59.tar.gz
android_external_proguard-3082b4a5fc45bc123067c9a984f90b7706704c59.tar.bz2
android_external_proguard-3082b4a5fc45bc123067c9a984f90b7706704c59.zip
increase the java heap to 512M when running proguard. Otherwise the Shem build runs out of memory
building the Utopia jar file. Change-Id: Id3491f1f8f1640aa532c5ec30353d26a8d7ff8ac
-rwxr-xr-xbin/proguard.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/proguard.sh b/bin/proguard.sh
index 5d441f9..b11495f 100755
--- a/bin/proguard.sh
+++ b/bin/proguard.sh
@@ -6,4 +6,4 @@
PROGUARD_HOME=`dirname "$0"`
PROGUARD_HOME=`dirname "$PROGUARD_HOME"`
-java -jar "$PROGUARD_HOME"/lib/proguard.jar "$@"
+java -Xmx512M -jar "$PROGUARD_HOME"/lib/proguard.jar "$@"