From 5d1441dec024f1e5103f51a8e4a79256c2a8e359 Mon Sep 17 00:00:00 2001 From: soup Date: Sat, 14 Dec 2024 19:07:13 -0500 Subject: [PATCH] rm compile_commands --- .gitignore | 1 + compile_commands.json | 42 ------------------------------------------ 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 compile_commands.json diff --git a/.gitignore b/.gitignore index bc95448..cfd2159 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .cache/ build/ +compile_commands.json diff --git a/compile_commands.json b/compile_commands.json deleted file mode 100644 index 00ea465..0000000 --- a/compile_commands.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - { - "arguments": [ - "/nix/store/1ciadcliylyyi9vx21id9vi1p1mayjn8-gcc-wrapper-14.2.0/bin/gcc", - "-c", - "-g", - "-Og", - "-std=c23", - "-Wall", - "-Wextra", - "-Wpedantic", - "-Isrc", - "-Ibuild", - "-o", - "build/bin/cgen", - "deps/tree-sitter-c/src/parser.c" - ], - "directory": "/home/n/src/cgen", - "file": "/home/n/src/cgen/deps/tree-sitter-c/src/parser.c", - "output": "/home/n/src/cgen/build/bin/cgen" - }, - { - "arguments": [ - "/nix/store/1ciadcliylyyi9vx21id9vi1p1mayjn8-gcc-wrapper-14.2.0/bin/gcc", - "-c", - "-g", - "-Og", - "-std=c23", - "-Wall", - "-Wextra", - "-Wpedantic", - "-Isrc", - "-Ibuild", - "-o", - "build/bin/cgen", - "src/main.c" - ], - "directory": "/home/n/src/cgen", - "file": "/home/n/src/cgen/src/main.c", - "output": "/home/n/src/cgen/build/bin/cgen" - } -]