From 658e19194dda1722e2d4e0ebd8c3987bce299748 Mon Sep 17 00:00:00 2001 From: Riteo Date: Tue, 11 Oct 2022 21:45:29 +0200 Subject: [PATCH] Actually set the execinfo flag on non-glibc systems (cherry picked from commit a3b53538920e1a60102623a894533da76f127c22) --- platform/x11/detect.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/x11/detect.py b/platform/x11/detect.py index bbe130260..92f430155 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -369,6 +369,7 @@ def configure(env): # The default crash handler depends on glibc, so if the host uses # a different libc (BSD libc, musl), fall back to libexecinfo. print("Note: Using `execinfo=yes` for the crash handler as required on platforms where glibc is missing.") + env["execinfo"] = True if env["execinfo"]: env.Append(LIBS=["execinfo"])