From 21055a1e5d34dda1b8151dd46a6bedca22bd73d9 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 18 Apr 2020 13:40:53 -0700 Subject: feat: added prototype of io/buffered io --- compile_commands.json | 44 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) (limited to 'compile_commands.json') diff --git a/compile_commands.json b/compile_commands.json index bc87fa4..a125285 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -1,4 +1,36 @@ [ + { + "arguments": [ + "clang", + "-c", + "-g", + "-fno-strict-aliasing", + "-fwrapv", + "-fms-extensions", + "-Iinclude", + "-o", + "build/bufio/bufio.o", + "src/bufio/bufio.c" + ], + "directory": "/home/nolln/root", + "file": "src/bufio/bufio.c" + }, + { + "arguments": [ + "clang", + "-c", + "-g", + "-fno-strict-aliasing", + "-fwrapv", + "-fms-extensions", + "-Iinclude", + "-o", + "build/error.o", + "src/error.c" + ], + "directory": "/home/nolln/root", + "file": "src/error.c" + }, { "arguments": [ "clang", @@ -41,11 +73,11 @@ "-fms-extensions", "-Iinclude", "-o", - "build/coro.o", - "src/coro.c" + "build/test.o", + "src/test.c" ], "directory": "/home/nolln/root", - "file": "src/coro.c" + "file": "src/test.c" }, { "arguments": [ @@ -57,10 +89,10 @@ "-fms-extensions", "-Iinclude", "-o", - "build/error.o", - "src/error.c" + "build/coro.o", + "src/coro.c" ], "directory": "/home/nolln/root", - "file": "src/error.c" + "file": "src/coro.c" } ] \ No newline at end of file -- cgit v1.2.1