diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-10 15:46:33 -0400 |
commit | 65ba015d6c1f248d36ad01a653bc49637804b15b (patch) | |
tree | a77c3fb3ca7ecac8f65eb9638d152f1e90307d0a /compile_commands.json | |
download | jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.gz jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.tar.bz2 jove-os-65ba015d6c1f248d36ad01a653bc49637804b15b.zip |
working usermode objdir iteration
Diffstat (limited to 'compile_commands.json')
-rw-r--r-- | compile_commands.json | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..83764f8 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,62 @@ +[ + { + "directory": "/home/jon/prg/jove/kernel", + "arguments": [ + "/home/jon/prg/jove/tools/bin/x86_64-jove-gcc", + "-ffreestanding", + "-mno-sse", + "-nostdlib", + "-fno-pie", + "-fno-pic", + "-g", + "-D__x86_64__", + "-D__limine__", + "-Iinclude", + "-I.", + "-mno-red-zone", + "-mcmodel=kernel", + "-mfsgsbase", + "-DKERNEL_STACKBYTES=4096", + "-DENABLE_PORTIO_UART", + "-DENABLE_UART", + "-DENABLE_INITRD", + "-DDBG_MEM", + "-c", + "main.c", + "-o", + "main.o" + ], + "file": "main.c" + }, + { + "directory": "/home/jon/prg/jove/apps/init/", + "arguments": [ + "/home/jon/prg/jove/tools/bin/x86_64-jove-gcc", + "-ffreestanding", + "-mno-sse", + "-nostdlib", + "-fno-pie", + "-fno-pic", + "-g", + "-I/home/jon/prg/jove/sysroot/usr/include", + "-c", + "main.c", + "-o", + "main.o" + ], + "file": "main.c" + }, + { + "directory": "/home/jon/prg/jove/lib/libjove/", + "arguments": [ + "/home/jon/prg/jove/tools/bin/x86_64-jove-gcc", + "-ffreestanding", + "-mno-sse", + "-nostdlib", + "-g", + "-I/home/jon/prg/jove/sysroot/usr/include", + "-Iinclude" + ], + "file": "libjove.c" + } +] |