4

我在 mac 中编译了 OpenJDK8。但是当我使用 gdb 调试一个简单的 java 类(只是系统输出)时,它总是显示没有源文件名 init.cpp的错误。(在 init.cpp: 95 行中添加了断点)。但是,它可以进入像 main.c 这样的 C 文件。所以不确定我是否正确编译了 OpenJDK8 或使用了正确的依赖版本。检查了 LD_LIBRARY_PATH 中是否存在 libjvm.dylib libjvm.dylib.dSYM。

[当我在 Eclipse CDT 中调试时,它有同样的问题]

使用 ENV:

  mac sierra 10.12.6
  gdb 7.12.1

调试命令:

  export LD_LIBRARY_PATH=~/openjdk/build/macosx-x86_64-normal-server-fastdebug/hotspot/bsd_amd64_compiler2/fastdebug

  ggdb --args ~/openjdk/build/macosx-x86_64-normal-server-fastdebug/jdk/bin/java Test

结果1(cpp文件中的断点):

 (gdb) break init.cpp:95

 No source file named init.cpp.

 Make breakpoint pending on future shared library load? (y or [n]) y

 Breakpoint 1 (init.cpp:95) pending.

 (gdb) run

 Starting program: ~/openjdk/build/macosx-x86_64-normal-server-fastdebug/jdk/bin/java Test

 [New Thread 0x1403 of process 94443]

 warning: unhandled dyld version (15)

 hello,hotspot

 [Inferior 1 (process 94443) exited normally]

结果2(c文件中的断点):

 (gdb) break main.c:125

 Breakpoint 2 at 0x100007912: file ~/openjdk/jdk/src/share/bin/main.c, line 125.

 (gdb) run

 Starting program: ~/openjdk/build/macosx-x86_64-normal-server-fastdebug/jdk/bin/java Test

 [New Thread 0x1603 of process 94446]

 warning: unhandled dyld version (15)

 Thread 2 hit Breakpoint 2, main ()

 at 
 ~/openjdk/jdk/src/share/bin/main.c:125
 125        return JLI_Launch(margc, margv,
4

0 回答 0