diff --git a/Userland/Libraries/LibJS/JIT/NativeExecutable.cpp b/Userland/Libraries/LibJS/JIT/NativeExecutable.cpp index 6c39a4c69d..ee21feb599 100644 --- a/Userland/Libraries/LibJS/JIT/NativeExecutable.cpp +++ b/Userland/Libraries/LibJS/JIT/NativeExecutable.cpp @@ -17,6 +17,10 @@ # define EXECINFO_BACKTRACE #endif +#if defined(AK_OS_ANDROID) && (__ANDROID_API__ < 33) +# undef EXECINFO_BACKTRACE +#endif + namespace JS::JIT { NativeExecutable::NativeExecutable(void* code, size_t size, Vector mapping)