Home > Enterprise >  why gdbserver is not deployed in android64?
why gdbserver is not deployed in android64?

Time:09-17

What is the exact purpose of $(NDKBasePath)\prebuilt\android-arm\gdbserver\gdbserver and why it is not deployed in android64 (it's deployed only in android)?

CodePudding user response:

GDB is Android debugger.

Specifically, Delphi uses GDB for debugging 32bit Android applications. For debugging 64bit Android applications it uses different debugger LLDB.

That answers why it is not deployed in android64

You can find lldb files in ...\Embarcadero\Studio\21.0\bin\Android\lldb folder.

For more information you can read Using Debuggers

  • Related