c_cpp_properties.json 631 B

123456789101112131415161718192021
  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. }
  19. ],
  20. "version": 4
  21. }