From 0a1e85e9e681b0138bd243ef3950eeafcd05f90a Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Mon, 5 Jan 2026 15:33:15 +0800 Subject: [PATCH] [Fix] (MG_Util/Debug/Log): force turn off stacktrace --- MobileGL/Defines.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MobileGL/Defines.h b/MobileGL/Defines.h index c1bd01fc..ea85b845 100644 --- a/MobileGL/Defines.h +++ b/MobileGL/Defines.h @@ -45,9 +45,9 @@ #define MOBILEGL_LOG_ENABLE_ANDROID 1 // Require C++23 -// Android NDK still doesn't have support for that :( +// Clang/Android NDK still doesn't have support for that :( #if __cplusplus >= 202302L && !__ANDROID__ -#define MOBILEGL_LOG_ENABLE_STACKTRACE 1 +#define MOBILEGL_LOG_ENABLE_STACKTRACE 0 #endif #ifdef __ANDROID__