Change LIBART_IMG_TARGET_BASE_ADDRESS to 0x70000000

Required for getting ART with valgrind on device working since
valgrind maps things in the 0x60000000 address range.

Bug: 13323732

Change-Id: I05efdbf3fe5acd1418e1d4ced5844154fb4c5d37
This commit is contained in:
Mathieu Chartier 2014-03-05 14:45:18 -08:00
parent cb902fff82
commit 3408ca0e0d

View file

@ -48,7 +48,7 @@ LIBART_IMG_HOST_BASE_ADDRESS := 0x60000000
ifeq ($(TARGET_ARCH),mips)
LIBART_IMG_TARGET_BASE_ADDRESS := 0x30000000
else
LIBART_IMG_TARGET_BASE_ADDRESS := 0x60000000
LIBART_IMG_TARGET_BASE_ADDRESS := 0x70000000
endif
########################################################################