os_kernel_lab/.vscode/c_cpp_properties.json
2024-04-14 19:15:43 +08:00

17 lines
611 B
JSON
Raw 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/lab2_result/kern/mm/"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}