You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
1.2 KiB

13 years ago
13 years ago
13 years ago
New CLI subcommand to create clang-compatible compilation database (`compile_commands.json`) (#14370) * pulled source from dev branch * missed a file from origin * formatting * revised argument names. relaxed matching rules to work for avr too * add docstrings * added docs. tightened up regex * remove unused imports * cleaning up command file. use existing qmk dir constant * rename parser library file * move lib functions into command file. there are only 2 and they aren't large * currently debugging... * more robustly find config * updated docs * remove unused imports * reuse make executable from the main make command * pulled source from dev branch * missed a file from origin * formatting * revised argument names. relaxed matching rules to work for avr too * add docstrings * added docs. tightened up regex * remove unused imports * cleaning up command file. use existing qmk dir constant * rename parser library file * move lib functions into command file. there are only 2 and they aren't large * currently debugging... * more robustly find config * updated docs * remove unused imports * reuse make executable from the main make command * remove MAKEFLAGS from environment for better control over process management * Update .gitignore Co-authored-by: Michael Forster <forster@google.com> * add a usage line to docs * doc change as suggested Co-authored-by: Nick Brassel <nick@tzarc.org> * rename command * remove debug print statements * generate-compilation-database: fix arg handling * generate-comilation-db: improve error handling * use cli.run() instead of Popen() Co-authored-by: Xton <cdewan@apple.com> Co-authored-by: Christon DeWan <cmdpix@mac.com> Co-authored-by: Michael Forster <forster@google.com> Co-authored-by: Nick Brassel <nick@tzarc.org>
2 years ago
  1. # Junk files
  2. *.bak
  3. *.swp
  4. *~
  5. .DS_Store
  6. ._*
  7. # Merge files
  8. *.orig
  9. *.rej
  10. # Build artifacts
  11. .clang_complete
  12. .build/
  13. *.elf
  14. *.log
  15. *.lss
  16. *.lst
  17. *.map
  18. *.o
  19. *.stackdump
  20. *.sym
  21. # QMK-specific
  22. api_data/v1
  23. quantum/version.h
  24. *.bin
  25. *.eep
  26. *.hex
  27. *.qmk
  28. *.uf2
  29. # Old-style QMK Makefiles
  30. /keyboards/**/Makefile
  31. # kbfirmware....
  32. /keyboards/**/kb.h
  33. /keyboards/**/kb.c
  34. # Eclipse/PyCharm/Other IDE Settings
  35. *.iml
  36. .browse.VC.db*
  37. .cproject
  38. .idea
  39. .idea/
  40. .project
  41. .settings/
  42. .vagrant/
  43. # ?
  44. .dep
  45. .history/
  46. build/
  47. cmake-build-debug
  48. CMakeLists.txt
  49. *.pdf
  50. # Let these ones be user specific, since we have so many different configurations
  51. *.code-workspace
  52. .stfolder
  53. .tags
  54. .vscode/c_cpp_properties.json
  55. .vscode/ipch/
  56. .vscode/last.sql
  57. .vscode/launch.json
  58. .vscode/tasks.json
  59. .vscode/temp.sql
  60. tags
  61. # Ignore image/font files
  62. *.bmp
  63. *.wbmp
  64. *.gif
  65. *.jpg
  66. *.jpeg
  67. *.png
  68. *.apng
  69. *.mng
  70. *.svg
  71. *.webp
  72. *.webm
  73. *.avi
  74. *.mp4
  75. *.mpeg
  76. *.ttf
  77. *.otf
  78. # Things Travis sees
  79. /.vs
  80. id_rsa_*
  81. secrets.tar
  82. # Python things
  83. __pycache__
  84. .python-version
  85. # Prerequisites for updating ChibiOS
  86. /util/fmpp*
  87. # Allow to exist but don't include it in the repo
  88. user_song_list.h
  89. # clangd
  90. compile_commands.json
  91. .clangd/
  92. .cache/
  93. # VIA(L) json files that don't belong in QMK repo
  94. via*.json