1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:14:58 +00:00

AK+LibCore: Don't use unsupported features on Android

This commit is contained in:
Andrew Kaster 2023-09-02 17:11:35 +02:00 committed by Andrew Kaster
parent 725584881a
commit 6e8f1549a3
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@
#include <AK/Platform.h>
#include <AK/StringView.h>
#if defined(AK_OS_LINUX) || defined(AK_OS_BSD_GENERIC) || defined(AK_OS_SOLARIS)
#if (defined(AK_OS_LINUX) && !defined(AK_OS_ANDROID)) || defined(AK_OS_BSD_GENERIC) || defined(AK_OS_SOLARIS)
# define EXECINFO_BACKTRACE
#endif