diff options
| author | Mistivia <i@mistivia.com> | 2024-11-15 21:22:20 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2024-11-15 21:22:20 +0800 |
| commit | 789ebeb7d097d2824ff62c73438af4cb77f882bc (patch) | |
| tree | 86de650556666795641016e33517f8d22714815c /compile_commands.json | |
| parent | 12f7b236531d839fe6790c71e2e51e014ae84e3d (diff) | |
finish project framework
Diffstat (limited to 'compile_commands.json')
| -rw-r--r-- | compile_commands.json | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..5702bfd --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,43 @@ +[ + { + "arguments": [ + "/usr/bin/gcc", + "-c", + "-g", + "-o", + "src/fvm.o", + "src/fvm.c" + ], + "directory": "/home/mistivia/repos/fvm", + "file": "/home/mistivia/repos/fvm/src/fvm.c", + "output": "/home/mistivia/repos/fvm/src/fvm.o" + }, + { + "arguments": [ + "/usr/bin/gcc", + "-c", + "-g", + "-o", + "src/main.o", + "src/main.c" + ], + "directory": "/home/mistivia/repos/fvm", + "file": "/home/mistivia/repos/fvm/src/main.c", + "output": "/home/mistivia/repos/fvm/src/main.o" + }, + { + "arguments": [ + "/usr/bin/gcc", + "-c", + "-Isrc/", + "-g", + "src/fvm.o", + "-o", + "tests/test_opcodes.bin", + "tests/test_opcodes.c" + ], + "directory": "/home/mistivia/repos/fvm", + "file": "/home/mistivia/repos/fvm/tests/test_opcodes.c", + "output": "/home/mistivia/repos/fvm/tests/test_opcodes.bin" + } +] |
