os_kernel_lab/.vscode/c_cpp_properties.json
423A35C7 4c81247971 实验3环境初始化
Makefile里的gdb和之前不一样了!要添加$(QEMUOPTS),不然会导致没有挂载交换分区。
2024-04-28 22:00:55 +08:00

17 lines
606 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
// "${workspaceFolder}/labcodes_answer/**/",
// 由于按顺序搜索所以如果这样的话搜索到lab1_result中的同名头文件就不会引用到lab2_result中的同名头文件导致错误
"${workspaceFolder}/labcodes_answer/lab3_result/**/"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}