├── .gitignore ├── LICENSE ├── README.md ├── cc-wrapper-hook ├── default.nix ├── mini-compile-commands-hook ├── mini_compile_commands_client.py ├── mini_compile_commands_server.py └── tests ├── build └── hook.nix ├── clang ├── shell.nix └── test.cc └── gcc ├── shell.nix └── test.cc /.gitignore: -------------------------------------------------------------------------------- 1 | compile_commands.json 2 | .cache 3 | tests/build/result -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/README.md -------------------------------------------------------------------------------- /cc-wrapper-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/cc-wrapper-hook -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/default.nix -------------------------------------------------------------------------------- /mini-compile-commands-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/mini-compile-commands-hook -------------------------------------------------------------------------------- /mini_compile_commands_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/mini_compile_commands_client.py -------------------------------------------------------------------------------- /mini_compile_commands_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/mini_compile_commands_server.py -------------------------------------------------------------------------------- /tests/build/hook.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/tests/build/hook.nix -------------------------------------------------------------------------------- /tests/clang/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/tests/clang/shell.nix -------------------------------------------------------------------------------- /tests/clang/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/tests/clang/test.cc -------------------------------------------------------------------------------- /tests/gcc/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/tests/gcc/shell.nix -------------------------------------------------------------------------------- /tests/gcc/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielbarter/mini_compile_commands/HEAD/tests/gcc/test.cc --------------------------------------------------------------------------------