logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vscode 无法打开源文件

问题分析:在win10下安装mingw64,添加环境变量,然后用vscode尝试打开c++项目,发现项目能编译成功,但是无法跳转.h文件。解决:将编译路径改为你g++.exe的路径,如红线部分所示。

#vscode#c++
Unable to find libthread_db matching inferior‘s thread library, thread debugging will not be availab

Unable to find libthread_db matching inferior's thread library, thread debugging will not be availableMake breakpoint pending on future shared library load? (y or [n])

#linux
Linux一个父进程创建两个子进程

直接上代码int main(int argc, char const *argv[]){pid_t c1 = fork();if(c1 == 0)//child1{printf("[%d] : child1\n", getpid());sleep(200);}else if(c1 > 0)//parent{printf("[%d] : par

#linux#c语言
暂无文章信息