From 03c389d7b995c29b5f38d5cd081219411b0b3185 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 27 Apr 2026 17:01:17 +1000 Subject: chore: Update compile commands --- compile_commands.json | 146 ++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 130 insertions(+), 16 deletions(-) (limited to 'compile_commands.json') diff --git a/compile_commands.json b/compile_commands.json index 356b74f..a9d21f0 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -1,59 +1,173 @@ [ { "arguments": [ - "/usr/bin/gcc", + "/usr/bin/cc", "-Wall", "-Wextra", + "-Werror", "-std=c11", + "-Iinclude", + "-Ibench", + "-O2", + "-c", + "-o", + "dist/src/bridges/stdio/stream_bridge.o", + "src/bridges/stdio/stream_bridge.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/bridges/stdio/stream_bridge.c", + "output": "/home/watson/tinyff/dist/src/bridges/stdio/stream_bridge.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", + "-Iinclude", + "-Ibench", + "-O2", + "-c", + "-o", + "dist/src/common.o", + "src/common.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/common.c", + "output": "/home/watson/tinyff/dist/src/common.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", + "-Iinclude", + "-Ibench", + "-O2", + "-c", + "-o", + "dist/src/stream.o", + "src/stream.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/stream.c", + "output": "/home/watson/tinyff/dist/src/stream.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", + "-Iinclude", + "-Ibench", "-O2", + "-c", + "-o", + "dist/src/dbg.o", + "src/dbg.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/dbg.c", + "output": "/home/watson/tinyff/dist/src/dbg.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", "-Iinclude", - "-Iinclude/tinyff", - "-Iinclude/ext", + "-Ibench", + "-O2", "-c", "-o", - "src/format/image/bmp.o", + "dist/src/format/image/bmp.o", "src/format/image/bmp.c" ], "directory": "/home/watson/tinyff", "file": "/home/watson/tinyff/src/format/image/bmp.c", - "output": "/home/watson/tinyff/src/format/image/bmp.o" + "output": "/home/watson/tinyff/dist/src/format/image/bmp.o" }, { "arguments": [ - "/usr/bin/gcc", + "/usr/bin/cc", "-Wall", "-Wextra", + "-Werror", "-std=c11", - "-O2", "-Iinclude", - "-Iinclude/tinyff", - "-Iinclude/ext", + "-Ibench", + "-O2", "-c", "-o", - "src/format/image/png.o", + "dist/src/format/image/png.o", "src/format/image/png.c" ], "directory": "/home/watson/tinyff", "file": "/home/watson/tinyff/src/format/image/png.c", - "output": "/home/watson/tinyff/src/format/image/png.o" + "output": "/home/watson/tinyff/dist/src/format/image/png.o" }, { "arguments": [ - "/usr/bin/gcc", + "/usr/bin/cc", "-Wall", "-Wextra", + "-Werror", "-std=c11", + "-Iinclude", + "-Ibench", "-O2", + "-c", + "-o", + "dist/src/tinyff.o", + "src/tinyff.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/tinyff.c", + "output": "/home/watson/tinyff/dist/src/tinyff.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", + "-Iinclude", + "-Ibench", + "-O2", + "-c", + "-o", + "dist/src/ext/crc32.o", + "src/ext/crc32.c" + ], + "directory": "/home/watson/tinyff", + "file": "/home/watson/tinyff/src/ext/crc32.c", + "output": "/home/watson/tinyff/dist/src/ext/crc32.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-Wall", + "-Wextra", + "-Werror", + "-std=c11", "-Iinclude", - "-Iinclude/tinyff", - "-Iinclude/ext", + "-Ibench", + "-O2", "-c", "-o", - "src/ext/tinflate.o", + "dist/src/ext/tinflate.o", "src/ext/tinflate.c" ], "directory": "/home/watson/tinyff", "file": "/home/watson/tinyff/src/ext/tinflate.c", - "output": "/home/watson/tinyff/src/ext/tinflate.o" + "output": "/home/watson/tinyff/dist/src/ext/tinflate.o" } ] -- cgit v1.2.3