c_cpp_properties.json 758 B

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