diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-01-20 02:34:32 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-01-20 02:34:32 +0300 |
commit | c0cd4e5f199e8567ec3b5e216fbee27837d21bea (patch) | |
tree | c78eee02932fc6e85413e367d27ec5b5627e1534 /compile_commands.json | |
download | cmonkey-c0cd4e5f199e8567ec3b5e216fbee27837d21bea.tar.gz cmonkey-c0cd4e5f199e8567ec3b5e216fbee27837d21bea.zip |
init
Diffstat (limited to 'compile_commands.json')
-rw-r--r-- | compile_commands.json | 167 |
1 files changed, 167 insertions, 0 deletions
diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..0dd5bca --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,167 @@ +[ + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/lexer.o", + "src/lexer.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/lexer.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/token.o", + "src/token.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/token.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/cmonkey.o", + "src/cmonkey.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/cmonkey.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/hmap.o", + "src/hmap.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/hmap.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/slice.o", + "src/slice.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/slice.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/repl.o", + "src/repl.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/repl.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/parser.o", + "src/parser.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/parser.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/eval.o", + "src/eval.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/eval.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/vector.o", + "src/vector.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/vector.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/ast.o", + "src/ast.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/ast.c" + }, + { + "directory": "/home/yaroslav/repos/personal/cmonkey", + "arguments": [ + "cc", + "-c", + "-iquoteinclude", + "-o", + "build/release/obj/src/object.o", + "src/object.c", + "-std=c11", + "-O2", + "-Wall" + ], + "file": "src/object.c" + } +] |