From c0cd4e5f199e8567ec3b5e216fbee27837d21bea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Thu, 20 Jan 2022 02:34:32 +0300 Subject: init --- compile_commands.json | 167 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 compile_commands.json (limited to 'compile_commands.json') 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" + } +] -- cgit v1.2.3