Load Process Local

From RAD Studio
Jump to: navigation, search

Go Up to Run Menu

Run > Load Process > Local

Passes command-line parameters to your application, specifies a host executable for testing a DLL or loads an executable into a selected debugger.

Item Description

Debugger

Select the debugger you want to use:

  • Embarcadero Windows 32-bit Debugger is the default embedded debugger for 32-bit Windows applications.
  • Embarcadero Windows 64-bit Debugger is specifically designed for debugging Delphi applications that target 64-bit Windows, which understands Delphi debug information and Delphi syntax when evaluating expressions.
  • Embarcadero Windows 64-bit LLDB Debugger for C++ is specifically designed for debugging C++applications that target 64-bit Windows, which understands the C++ debug information format and C++ syntax when evaluating expressions.
  • Embarcadero macOS 64-bit Debugger is the debugger for 64-bit Intel macOS applications.
  • Embarcadero macOS ARM 64-bit Debugger is the debugger for 64-bit ARM macOS applications.
  • Embarcadero Linux 64-bit Debugger is the debugger for 64-bit Intel Linux applications.
  • Embarcadero iOS Device 64-bit Debugger is the debugger for 64-bit iOS device applications.
Note: Load Process Environment Block is not supported for the Embarcadero iOS Device Debuggers.
  • Embarcadero Android 32-bit Debugger is the debugger for 32-bit Android device applications.
  • Embarcadero Android 64-bit Debugger is the debugger for 64-bit Android device applications
Note: Load Process Environment Block is not supported for the Embarcadero Android Debuggers.

Process

Enter the full path name including the name of the executable (.EXE) file that you want to run in the debugger. Then click Load to load the executable. The executable is paused at its entry point. If there is no debug information at the entry point, the CPU window is opened. Select Run > Run to run the executable. Click Browse to search for a directory and executable.

Parameters

Enter the command-line arguments you want to pass to your application when it starts.

Working Directory

Enter the name of the directory to use for the debugging process. By default, this is the same directory as the one containing the executable of your application.

Source path

Specifies the path to the source files used to build the executable.

After load

Specifies the code (if any) that is to be executed after loading the process. Choose from the following options:

Do not run

Equivalent to starting a debug session with Run > Trace Into (F7),

Loads the executable but does not run it.

Run to program entry point

Equivalent to starting a debug session with Run > Step Over (F8)

For C++ only; runs to the first entry point, such as main().

Run to first source

Equivalent to starting a debug session with Run > Trace to Next Source Line (Shift+F7)

Runs to the first source line.

Run

Equivalent to starting a debug session with Run > Run (F9)

Runs the process to completion, under the control of the debugger.

See Also