Changelog: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-28.html Sponsored by: Netzkommune GmbH
11 lines
472 B
C
11 lines
472 B
C
--- include/my_stacktrace.h.orig 2021-12-17 16:07:27 UTC
|
|
+++ include/my_stacktrace.h
|
|
@@ -43,7 +43,7 @@
|
|
HAVE_BACKTRACE - Linux, FreeBSD, OSX, Solaris
|
|
_WIN32 - Windows
|
|
*/
|
|
-#if defined(HAVE_BACKTRACE) || defined(_WIN32)
|
|
+#if (defined(HAVE_BACKTRACE) || defined(_WIN32)) && (defined(__aarch64__) || defined(__amd64__) || defined(__i386__))
|
|
#define HAVE_STACKTRACE 1
|
|
void my_init_stacktrace();
|
|
void my_print_stacktrace(const uchar *stack_bottom, ulong thread_stack);
|