about summary refs log tree commit diff
path: root/src/afl-fuzz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r--src/afl-fuzz.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index 6538e0a0..e6d9508b 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -830,6 +830,13 @@ int main(int argc, char **argv_orig, char **envp) {
       case 'A':                                           /* CoreSight mode */
 
         if (afl->fsrv.cs_mode) { FATAL("Multiple -A options not supported"); }
+
+        if (!(__aarch64__ && __linux__)) {
+
+          FATAL("-A option is not supported on this platform");
+
+        }
+
         afl->fsrv.cs_mode = 1;
 
         break;