diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 0c10c49..446fa38 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -6,7 +6,7 @@ "${workspaceFolder}/**", // "${workspaceFolder}/labcodes_answer/**/", // 由于按顺序搜索,所以如果这样的话搜索到lab1_result中的同名头文件就不会引用到lab2_result中的同名头文件导致错误 - "${workspaceFolder}/labcodes_answer/lab4_result/**/" + "${workspaceFolder}/labcodes_answer/lab5_result/**/" ], "defines": [], "compilerPath": "/usr/bin/gcc", diff --git a/.vscode/launch.json b/.vscode/launch.json index 68bbaac..23f643d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,7 @@ "program": "bin/kernel", "args": [], "stopAtEntry": false, - "cwd": "${workspaceFolder}/labcodes_answer/lab4_result", + "cwd": "${workspaceFolder}/labcodes_answer/lab5_result", "environment": [], "externalConsole": false, "MIMode": "gdb", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index baae814..6487eb5 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,7 @@ "env": { "DISPLAY": ":0", }, - "cwd": "${workspaceFolder}/labcodes_answer/lab4_result" + "cwd": "${workspaceFolder}/labcodes_answer/lab5_result" }, "problemMatcher": [ diff --git a/labcodes_answer/lab5_result/Makefile b/labcodes_answer/lab5_result/Makefile index 8f3f2d9..800d90a 100644 --- a/labcodes_answer/lab5_result/Makefile +++ b/labcodes_answer/lab5_result/Makefile @@ -253,6 +253,7 @@ endif # files for grade script TARGETS: $(TARGETS) +all: $(TARGETS) .DEFAULT_GOAL := TARGETS @@ -268,6 +269,8 @@ qemu-nox: $(UCOREIMG) $(SWAPIMG) $(V)$(QEMU) -serial mon:stdio $(QEMUOPTS) -nographic TERMINAL := gnome-terminal +gdb: $(UCOREIMG) $(SWAPIMG) + $(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null debug: $(UCOREIMG) $(SWAPIMG) $(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null &