Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3408ca0e authored by Mathieu Chartier's avatar Mathieu Chartier
Browse files

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
parent cb902fff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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

########################################################################