From 0718f641f5410dead76cfb4a0a9220ec553b851f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 31 Jan 2021 02:16:21 +0100 Subject: [PATCH] Install more debug symbols for ASAN builds Install glib and gtk symbols which are required to get full information from the LeakSanitizer stack traces. --- build/tools/before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index 374b5823ff..378d9b00b8 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -61,7 +61,7 @@ case $(uname -s) in $SUDO apt-get update # Install the symbols to allow LSAN suppression list to work. - $SUDO apt-get install -y libfontconfig1-dbgsym + $SUDO apt-get install -y libfontconfig1-dbgsym libglib2.0-0-dbgsym libgtk-3-0-dbgsym fi fi ;;