[Fix] (MG_Util/Debug/Log): force turn off stacktrace

This commit is contained in:
2026-01-05 15:33:15 +08:00
parent 08a9c9bb61
commit 0a1e85e9e6
+2 -2
View File
@@ -45,9 +45,9 @@
#define MOBILEGL_LOG_ENABLE_ANDROID 1 #define MOBILEGL_LOG_ENABLE_ANDROID 1
// Require C++23 // 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__ #if __cplusplus >= 202302L && !__ANDROID__
#define MOBILEGL_LOG_ENABLE_STACKTRACE 1 #define MOBILEGL_LOG_ENABLE_STACKTRACE 0
#endif #endif
#ifdef __ANDROID__ #ifdef __ANDROID__