diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..4c5fd3e --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,15 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "${workspaceFolder}/labcodes_answer/**/" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index 099c58b..c50d81b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "(gdb) 启动", "type": "cppdbg", "request": "launch", - "program": "obj/bootblock.o", + "program": "bin/kernel", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}/labcodes_answer/lab1_result",