mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
Fix android build
This commit is contained in:
parent
676d4dbc2d
commit
a458a36814
@ -1534,7 +1534,11 @@ static bool r_debug_gcore (RDebug *dbg, RBuffer *dest) {
|
||||
#if __APPLE__
|
||||
return xnu_generate_corefile (dbg, dest);
|
||||
#elif __linux__ && (__x86_64__ || __i386__ || __arm__ || __arm64__)
|
||||
# if __ANDROID__
|
||||
return false;
|
||||
# else
|
||||
return linux_generate_corefile (dbg, dest);
|
||||
# endif
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user