You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-games/godot/files/godot-4.0-musl.patch

10 lines
345 B

crash handler requires glibc or libexecinfo (not packaged),
and is always enabled if build the editor (release_debug)
--- a/platform/linuxbsd/crash_handler_linuxbsd.cpp
+++ b/platform/linuxbsd/crash_handler_linuxbsd.cpp
@@ -38,3 +38,3 @@
-#ifdef DEBUG_ENABLED
+#if defined(DEBUG_ENABLED) && defined(__GLIBC__)
#define CRASH_HANDLER_ENABLED 1