From ee432f65ae08aa2f21fbec74ad20df6fd890e18b Mon Sep 17 00:00:00 2001 From: nyyu Date: Wed, 25 Aug 2021 09:32:32 +0200 Subject: [PATCH] mondrianwifi: Force build scudo free 32 bit variant of libc. We have issues with camera blobs which doesn't play well with scudo allocation/deallocation tracking. Scudo reports corrupted header when stopping a video recording. Because we aren't alone with this (also upstream seems to have trouble with camera modules) use the 32 libc which is used only by a few components, like camera and audio. Because docs states, that libc with the svelte take less RSS, but is a little bit slower. https://android.googlesource.com/platform/bionic/+/master/docs/native_allocator.md This is the reason to not enable this target wide. Change-Id: Ic0d950817238a227218f59b95e5fd2ffd66e786a --- BoardConfig.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/BoardConfig.mk b/BoardConfig.mk index 27cca08..cb48dc6 100755 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -76,6 +76,7 @@ QCOM_BT_USE_SMD_TTY := true # Camera TARGET_HAS_LEGACY_CAMERA_HAL1 := true +MALLOC_SVELTE_FOR_LIBC32 := true # Charger BOARD_BATTERY_DEVICE_NAME := "battery"