mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 16:24:59 +00:00
LibJS: Don't try to use backtrace(3) on Android below API level 33
This commit is contained in:
parent
f8799885de
commit
26e5c20cfa
1 changed files with 4 additions and 0 deletions
|
@ -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<BytecodeMapping> mapping)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue