Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将源代码添加some_shared_library.so到gdb.
some_shared_library.so
gdb
我尝试使用dir命令,但没有帮助。
dir
为了让 GDB 知道哪些源与您的 . 匹配some_shared_library.so,您必须使用调试信息(通常是-g标志)构建它。
-g
一旦你这样做了(听起来你还没有这样做),在许多平台(例如 Linux)上,GDB 会自动找到源代码。在其他平台上,dir正确的命令是告诉 GDB 源在哪里。