11

当我尝试使用 eclipse CDT 中的 GDB 调试我的应用程序时,我收到以下错误:

 Can't find a source file at "../mingw/main.c"
 Locate the file or edit the source lookup path to include its location.

Eclipse 正在../mingw/main.c 中查找源文件位置,但它应该在/edit/src/main.c 中。正如您在下面的屏幕截图中看到的,edit/src 是源查找路径的一部分。为什么要查看../mingw?我找不到任何使它看起来在那里的配置设置。

这是指示问题的屏幕截图

我正在使用 eclipse Juno、CDT 8.1、Windows 7 64bit

4

3 回答 3

7

这是你的答案http://www.eclipse.org/forums/index.php/t/57027/

如果您在 Windows 下工作,您是否设置了所需的映射?也许 Eclipse 找不到源代码,因为缺少到项目/工作区所在的 (cygwin-) 驱动器的映射。

当您启动 Cygwin 时,输入“mount”并查找您拥有的映射:它们可能如下所示:

Admin@bs11-01xp ~
$ mount
D:\cygwin\bin on /usr/bin type system (binmode)
D:\cygwin\lib on /usr/lib type system (binmode)
D:\cygwin on / type system (binmode)
c: on /cygdrive/c type system (binmode,noumount)
d: on /cygdrive/d type system (binmode,noumount)
e: on /cygdrive/e type system (binmode,noumount)
j: on /cygdrive/j type system (binmode,noumount)
n: on /cygdrive/n type system (binmode,noumount)
u: on /cygdrive/u type system (binmode,noumount)
w: on /cygdrive/w type system (binmode,noumount)
x: on /cygdrive/x type system (binmode,noumount)
y: on /cygdrive/y type system (binmode,noumount)
z: on /cygdrive/z type system (binmode,noumount)

我的项目 ara all under J:\Projects,所以我的映射需要在 Eclipse 中显示为:

/cygdrive/j j:/

打开 Eclipse 然后点击
- Windows => Preferences... => C/C++ => Debug =>Common Source Lookup Path
- 添加新的路径映射:点击 [Add] => Path Mapping => [OK]
- 选择新映射 => [Edith] => 更改映射名称“项目源” => [添加]
- 将“编译路径”设置为源(示例 cygwin!)“/cygdrive/j”(不带引号!)
- 设置“本地文件系统路径”tho “J:\”(不带引号!)

现在你准备好了再试一次......祝你好运!

于 2014-08-13T15:04:29.267 回答
0

在调试器选项卡的“调试配置”(在调试器弹出图标下)取消选中“启动时停止”,之后它不会在启动时停止,但如果你喜欢你可以在那里放置断点

于 2013-05-29T12:24:37.953 回答
0

没有任何效果。除以下外,上述解决方案均无效

我只是用 msys gdb 替换了 gdb

IE。例如

当前配置

... 应用程序配置 .. 调试 .. 调试

GDB 调试器 gdb

msys gdb 的 GDB 调试器路径(例如 c:\msys\bin\gdb.exe

马努

于 2022-01-26T11:37:04.810 回答