diff options
| author | van Hauser <vh@thc.org> | 2022-02-10 12:12:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-10 12:12:02 +0100 |
| commit | 1d4f1e48797c064ee71441ba555b29fc3f467983 (patch) | |
| tree | 66124b018da5451bd5eb578c460bd27e0614e52e /frida_mode/src/stalker.c | |
| parent | 2d9325aed9bde0630162a5efaac33a2a8f5bb252 (diff) | |
| parent | de7058b75b629011246be12b4ae7df1e504925b1 (diff) | |
| download | afl++-1d4f1e48797c064ee71441ba555b29fc3f467983.tar.gz | |
Merge pull request #1326 from AFLplusplus/dev
push to stable
Diffstat (limited to 'frida_mode/src/stalker.c')
| -rw-r--r-- | frida_mode/src/stalker.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/frida_mode/src/stalker.c b/frida_mode/src/stalker.c index 3a421867..80e4e707 100644 --- a/frida_mode/src/stalker.c +++ b/frida_mode/src/stalker.c @@ -100,7 +100,7 @@ void stalker_init(void) { FOKF(cBLU "Stalker" cRST " - " cGRN "adjacent_blocks:" cYEL " [%u]", stalker_adjacent_blocks); -#if !(defined(__x86_64__) || defined(__i386__)) +#if !(defined(__x86_64__) || defined(__i386__) || defined(__aarch64__)) if (getenv("AFL_FRIDA_STALKER_IC_ENTRIES") != NULL) { FFATAL("AFL_FRIDA_STALKER_IC_ENTRIES not supported"); @@ -134,6 +134,9 @@ void stalker_init(void) { #if defined(__x86_64__) || defined(__i386__) stalker = g_object_new(GUM_TYPE_STALKER, "ic-entries", stalker_ic_entries, "adjacent-blocks", stalker_adjacent_blocks, NULL); +#elif defined(__aarch64__) + stalker = + g_object_new(GUM_TYPE_STALKER, "ic-entries", stalker_ic_entries, NULL); #else stalker = gum_stalker_new(); #endif |
