vscode gdb 调试 出现 gdb Loaded ‘/lib/libc.so.0‘. Cannot find or open the symbol file.

出现这类so库找不到的问题,请在launch.json配置文件中添加"additionalSOLibSearchPath"参数,在其中导入包含所需动态库库的路径:

"additionalSOLibSearchPath": "xxx/libc/uclibc/lib;xxx/mips-linux-gnu/libc/uclibc/usr/lib"

就像这样

技术学习与项目开发欢迎私信

你可能感兴趣的:(vscode,ide,gdb)