From 392c9aff947a41e7e0da0b1a9612e174cfa956a7 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 18 Apr 2020 13:30:03 -0700 Subject: test: added prime sieve test of coroutines --- compile_commands.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'compile_commands.json') diff --git a/compile_commands.json b/compile_commands.json index c012748..bc87fa4 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -1,4 +1,52 @@ [ + { + "arguments": [ + "clang", + "-c", + "-g", + "-fno-strict-aliasing", + "-fwrapv", + "-fms-extensions", + "-Iinclude", + "-o", + "build/string.o", + "src/string.c" + ], + "directory": "/home/nolln/root", + "file": "src/string.c" + }, + { + "arguments": [ + "clang", + "-c", + "-g", + "-fno-strict-aliasing", + "-fwrapv", + "-fms-extensions", + "-Iinclude", + "-o", + "build/memory.o", + "src/memory.c" + ], + "directory": "/home/nolln/root", + "file": "src/memory.c" + }, + { + "arguments": [ + "clang", + "-c", + "-g", + "-fno-strict-aliasing", + "-fwrapv", + "-fms-extensions", + "-Iinclude", + "-o", + "build/coro.o", + "src/coro.c" + ], + "directory": "/home/nolln/root", + "file": "src/coro.c" + }, { "arguments": [ "clang", -- cgit v1.2.1