如何从头开始在delphi 7中进行DLL的远程调试

发布于 2024-08-15 04:11:44 字数 141 浏览 2 评论 0原文

谁能帮我解决一下如何远程调试独立于 exe 的 DLL(只是一个 dll)。 DLL 是一个将在服务器计算机上运行的服务,DLL 源代码位于客户端计算机上。现在,当该服务在服务器计算机上运行时,我想使用 delphi 7 调试位于客户端计算机上的 delphi 代码。

can anyone please help me out, to how to do remote debugging of a DLL (Just a dll) which is independent of the exe.
The dll is a service which will be running in the server machine and the DLL source code is at the client machine. Now when this service is running at the server machine i want to debug the delphi code which is at the client machine using delphi 7.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情场扛把子 2024-08-22 04:11:44
  1. 使用远程调试符号编译 DLL 并在服务器计算机上部署两者(.dll、.rsm 等) 在服务器计算机上
  2. 安装远程调试器 在服务器计算机上
  3. 启动远程调试器 在
  4. 客户端计算机上启动 Delphi 并加载 DLL 项目
  5. 通过选择“运行”-“附加到进程”并填写服务器计算机,从 Delphi 启动远程调试会话
  6. 的服务器计算机上的进程
  7. 选择加载 DLL远程调试

另请参阅 http://delphi.wikia.com/wiki/Remote_Debugger

  1. Compile the DLL with remote debugging symbols and deploy both (.dll, .rsm, etc) on the server machine
  2. Install the remote debugger on the server machine
  3. Start the remote debugger on the server machine
  4. Start Delphi on the client machine and load the DLL project
  5. Start a remote debugging session from Delphi by choosing Run - Attach to process and fill in the server machine
  6. Select the process on the server machine which loaded the DLL
  7. Debug remote

Also see http://delphi.wikia.com/wiki/Remote_Debugger

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文