c_cpp_properties.json 696 B

12345678910111213141516171819202122
  1. {
  2. "configurations": [
  3. {
  4. "name": "DragonOS",
  5. "includePath": [
  6. "${workspaceFolder}/**",
  7. "${workspaceFolder}/user/libs/libc/src/include",
  8. "${workspaceFolder}/user/libs/libc/src/include/export"
  9. ],
  10. "defines": [
  11. "__x86_64__",
  12. "DEBUG"
  13. ],
  14. "compilerPath": "~/opt/dragonos-gcc/gcc-x86_64-unknown-none/bin/x86_64-elf-gcc",
  15. "cStandard": "gnu17",
  16. "cppStandard": "gnu++14",
  17. "intelliSenseMode": "linux-gcc-x64",
  18. "configurationProvider": "ms-vscode.makefile-tools"
  19. }
  20. ],
  21. "version": 4
  22. }