Vary non-image Xmx for dex2oat on MIPS.

The image Xmx is already fixed at 64m. The issue is in the non boot image case.

(cherry picked from commit 87f0d006f2)

Change-Id: Id4a6d9e8edf00505198c3f3dd599cb7b7f06363a
This commit is contained in:
Ian Rogers 2014-07-16 22:25:35 -07:00 committed by Sebastien Hertz
parent 2715dc678a
commit bb6593243f
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ ifeq ($(TARGET_ARCH),mips)
# via a property as we want the larger Xmx value if we're running on a
# MIPS device.
LIBART_IMG_TARGET_BASE_ADDRESS := 0x30000000
DEX2OAT_IMAGE_XMX := 128m
DEX2OAT_XMX := 128m
endif
########################################################################