소스 검색

实验2环境初始化

x86-32
423A35C7 8 달 전
부모
커밋
be3ec804e8
4개의 변경된 파일8개의 추가작업 그리고 5개의 파일을 삭제
  1. +3
    -1
      .vscode/c_cpp_properties.json
  2. +1
    -1
      .vscode/launch.json
  3. +1
    -1
      .vscode/tasks.json
  4. +3
    -2
      labcodes_answer/lab2_result/Makefile

+ 3
- 1
.vscode/c_cpp_properties.json 파일 보기

@ -4,7 +4,9 @@
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/labcodes_answer/**/"
// "${workspaceFolder}/labcodes_answer/**/",
// lab1_resultlab2_result
"${workspaceFolder}/labcodes_answer/lab2_result/kern/mm/"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",

+ 1
- 1
.vscode/launch.json 파일 보기

@ -11,7 +11,7 @@
"program": "bin/kernel",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/labcodes_answer/lab1_result",
"cwd": "${workspaceFolder}/labcodes_answer/lab2_result",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",

+ 1
- 1
.vscode/tasks.json 파일 보기

@ -9,7 +9,7 @@
"env": {
"DISPLAY": ":0",
},
"cwd": "${workspaceFolder}/labcodes_answer/lab1_result"
"cwd": "${workspaceFolder}/labcodes_answer/lab2_result"
},
"problemMatcher": [

+ 3
- 2
labcodes_answer/lab2_result/Makefile 파일 보기

@ -202,7 +202,7 @@ endif
# files for grade script
targets: $(TARGETS)
all: $(TARGETS)
.DEFAULT_GOAL := targets
QEMUOPTS = -hda $(UCOREIMG)
@ -217,7 +217,8 @@ qemu-nox: targets
$(V)$(QEMU) -serial mon:stdio $(QEMUOPTS) -nographic
TERMINAL := gnome-terminal
gdb: $(UCOREIMG)
$(V)$(QEMU) -S -s -parallel stdio -hda $< -serial null
debug: $(UCOREIMG)
$(V)$(QEMU) -S -s -parallel stdio $(QEMUOPTS) -serial null &
$(V)sleep 2

불러오는 중...
취소
저장