c_cpp_properties.json 559 B

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