记录3月13日vscode踩坑
以前上多文件编译的课没有认真听,导致写个多文件编译都一直出错。
总结:1.gcc test.c test1.c `test.h` -o test.exe 此处不应该加上.h文件
2.vscode中要想一次性编译多个文件可以在settings.json文件中加上
` "c": "gcc '*.c' -o '$fileNameWithoutExt.exe' -Wall -O2 -m64 -lm -static-libgcc -std=c11 -fexec-charset=GBK && &'./$fileNameWithoutExt.exe'",`
vscode中launch.json文件中"miDebuggerPath"选项是用来放debug程序gcc.exe的存储路径。
“program”: “${workspaceFolder}/build/what.exe”:要想使用cmake生成的可执行程序需要在launch.json中将cmakelists中生成到build文件夹里的.exe文件路径添加到program设置下。