Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging Delphi Application on Non Development Environment

I am attempting to use WinDBG or another debugger to debug a CodeGear Delphi 2007 Windows application on a remote machine. I have been unable to produce symbol files for WinDBG.

Is there a way to use WinDBG or another debugger to debug Delphi applications on a system that doesn't include the IDE?

Edit1

The remote debugger is not an option here. I am able to remote in to the end user PC, but I am unable to use the remote debugger due to firewall restrictions.

Edit2

I am able to remote in to the machine, but can not connect the CodeGear remote debugger due to firewall restrictions.

like image 218
Dustin Venegas Avatar asked Feb 19 '09 15:02

Dustin Venegas


2 Answers

How about the remote debugger? Build your app with remote debug symbols and debug from your development machine across the network.

like image 110
Bruce McGee Avatar answered Oct 08 '22 12:10

Bruce McGee


instead, i rely on MadExcept stack tracing and some logging features. my application is distributed worldwide & this has been sufficient.

like image 25
X-Ray Avatar answered Oct 08 '22 13:10

X-Ray