From 531a109b1ff35bfe7873250ddca258d2cd031f18 Mon Sep 17 00:00:00 2001 From: umarcor <38422348+umarcor@users.noreply.github.com> Date: Wed, 19 Feb 2020 20:11:45 +0100 Subject: disable backtrace on android (#1142) --- src/grt/config/jumps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/grt') diff --git a/src/grt/config/jumps.c b/src/grt/config/jumps.c index 6afc9d570..60825112b 100644 --- a/src/grt/config/jumps.c +++ b/src/grt/config/jumps.c @@ -29,7 +29,7 @@ #include #include -#if defined (__linux__) || defined (__APPLE__) +#if ( defined (__linux__) || defined (__APPLE__) ) && !defined (__ANDROID__) #define HAVE_BACKTRACE 1 #include #endif -- cgit v1.2.3