diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-10-27 19:48:01 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:19:13 -0500 |
| commit | c9038282349fb3b620a16d3ec12723e953cc2c98 (patch) | |
| tree | bea0e5d2818d295bc5b0efa83fd8bb309f343c46 /docs | |
| parent | feabab1d3d173894d0ef2a3dbb58a6b2229efd54 (diff) | |
add caveat on single stepping
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/guide/debugger.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/guide/debugger.md b/docs/guide/debugger.md index 02a40a37..c602c87d 100644 --- a/docs/guide/debugger.md +++ b/docs/guide/debugger.md @@ -295,9 +295,13 @@ Cannot debug binaries that require Administrator (Windows) or root (Linux/macOS) ### macOS -- Cannot debug fat binary on macOS. First launch the process using lldb-server/debugserver, and connect to it using Binary Ninja debugger. See [Remote Debugging Guide](remote-debugging.md) for more details. +- Cannot debug fat binaries on macOS. First launch the process using lldb-server/debugserver, and connect to it using Binary Ninja debugger. See [Remote Debugging Guide](remote-debugging.md) for more details. - Cannot debug certain protected applications due to SIP (System Integrity Protection) on macOS. This includes applications in `/Applications`. While this can be circumvented by disabling the SIP, it will pose serious threat to the safety of you device. So we do not recommend it and you will need to proceed with it at your own risk. +### ARM/AArch64 support + +According to [https://lldb.llvm.org/](https://lldb.llvm.org/), ARM and AArch64 support should be considered experimental. While in our experience it has worked fairly well, one particular bug we've observed is that [single stepping](https://github.com/Vector35/debugger/issues/308) _over_ a return instruction will fail. + ## Troubleshooting While we have tested the debugger in many scenarios, it may still malfunction in certain cases. Here are some basic steps to troubleshoot the situation. |
