From 521316d09b39a410d7e797efa176371e31a3a57e Mon Sep 17 00:00:00 2001 From: BanceDev Date: Mon, 9 Sep 2024 16:17:08 -0400 Subject: add aliasing to init.lua --- compile_commands.json | 58 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 55 insertions(+), 3 deletions(-) (limited to 'compile_commands.json') diff --git a/compile_commands.json b/compile_commands.json index 5ba9a1e..1edddc2 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -5,14 +5,66 @@ "-DLUSH_VERSION=\"0.0.1\"", "-DDEBUG", "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/hashmap.o", + "lib/hashmap/hashmap.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/lib/hashmap/hashmap.c", + "output": "/home/lanceb/lush/obj/Debug/hashmap.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/history.o", + "src/history.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/history.c", + "output": "/home/lanceb/lush/obj/Debug/history.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", + "-g", + "-c", + "-o", + "obj/Debug/lua_api.o", + "src/lua_api.c" + ], + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/lua_api.c", + "output": "/home/lanceb/lush/obj/Debug/lua_api.o" + }, + { + "arguments": [ + "/usr/bin/cc", + "-DLUSH_VERSION=\"0.0.1\"", + "-DDEBUG", + "-I/usr/include/lua5.4", + "-Ilib/hashmap", "-g", "-c", "-o", "obj/Debug/lush.o", "src/lush.c" ], - "directory": "/home/lanceb/projects/lush", - "file": "/home/lanceb/projects/lush/src/lush.c", - "output": "/home/lanceb/projects/lush/obj/Debug/lush.o" + "directory": "/home/lanceb/lush", + "file": "/home/lanceb/lush/src/lush.c", + "output": "/home/lanceb/lush/obj/Debug/lush.o" } ] -- cgit v1.2.3-59-g8ed1b