Preparing Files for Remote Debugging
From RAD Studio
Go Up to Debugging Applications Index
Executable files and symbol files must be copied to the remote machine after they are compiled. You must set the correct options on your local machine in order to generate these files.
To prepare files for debugging on a remote machine:
- Open the project on your local machine.
- For Delphi, choose Project > Options > Linker and assure that the Include remote debug symbols option is checked.This directs the compiler to generate a symbol file. The following extensions are used in symbol files (for Delphi projects).
| Language | Debug symbol file extension |
|---|---|
|
Delphi |
.rsm |
|
C++ |
.tds |
Delphi Note: It is also important to remember when setting your project's compiler and linker options, that Optimization should be turned off, and Stack Frames turned on, just as when you are debugging locally. In the IDE Project Manager, you can double-click to select the Debug build, then right-click on it to check Compiler and Linker properties are set correctly for debugging.
- Compile the project on your local machine.
- Copy the executable files and symbol files for the project to the remote machine.
- Choose Run > Load Process .
- Specify the directory into which you copied the symbol files in the Debug symbols search path field.
- Click OK.