Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. {
  2. "version": 4,
  3. "env": {
  4. "macOsGccPath": "/usr/local/bin/gcc-8",
  5. "linuxGccPath": "/usr/bin/gcc",
  6. "defaultClangPath": "/usr/bin/clang",
  7. "phpSrcPath": "~/src/php/source/7.3.9",
  8. "defaultIncludePath": [
  9. "${workspaceFolder}",
  10. "${workspaceFolder}/ext"
  11. ]
  12. },
  13. "configurations": [
  14. {
  15. "name": "PHP extension configuration for macOs",
  16. "intelliSenseMode": "clang-x64",
  17. "includePath": [
  18. "${defaultIncludePath}",
  19. "${phpSrcPath}",
  20. "${phpSrcPath}/main",
  21. "${phpSrcPath}/Zend",
  22. "${phpSrcPath}/TSRM",
  23. "${phpSrcPath}/ext",
  24. "${phpSrcPath}/sapi"
  25. ],
  26. "browse": {
  27. "path": [
  28. "${phpSrcPath}",
  29. "${defaultIncludePath}",
  30. "${workspaceFolder}"
  31. ],
  32. "limitSymbolsToIncludedHeaders": false,
  33. "databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db"
  34. },
  35. "compilerPath": "${defaultClangPath}",
  36. "cStandard": "c99",
  37. "defines": [
  38. "HAVE_CONFIG_H=1"
  39. ]
  40. },
  41. {
  42. "name": "PHP extension configuration for Linux",
  43. "intelliSenseMode": "clang-x64",
  44. "includePath": [
  45. "${defaultIncludePath}",
  46. "${phpSrcPath}",
  47. "${phpSrcPath}/main",
  48. "${phpSrcPath}/Zend",
  49. "${phpSrcPath}/TSRM",
  50. "${phpSrcPath}/ext",
  51. "${phpSrcPath}/sapi"
  52. ],
  53. "browse": {
  54. "path": [
  55. "${phpSrcPath}",
  56. "${defaultIncludePath}",
  57. ],
  58. "limitSymbolsToIncludedHeaders": false,
  59. "databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db"
  60. },
  61. "compilerPath": "${linuxGccPath}",
  62. "cStandard": "c99",
  63. "defines": [
  64. "HAVE_CONFIG_H=1"
  65. ]
  66. }
  67. ]
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement