From 1a6ce0047bbc5125c386f65ae348688f98a9bb3f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 30 Sep 2024 14:39:30 -0400 Subject: Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code --- tomo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tomo.c') diff --git a/tomo.c b/tomo.c index 8c2bd97a..7d8f195d 100644 --- a/tomo.c +++ b/tomo.c @@ -95,6 +95,8 @@ int main(int argc, char *argv[]) {"c", false, &Bool$info, &stop_at_obj_compilation}, {"compile-exe", false, &Bool$info, &stop_at_exe_compilation}, {"e", false, &Bool$info, &stop_at_exe_compilation}, + {"uninstall", false, &Bool$info, &uninstall}, + {"u", false, &Bool$info, &uninstall}, {"library", false, &Bool$info, &library_mode}, {"L", false, &Bool$info, &library_mode}, {"show-codegen", false, &Bool$info, &show_codegen}, @@ -333,7 +335,7 @@ void build_library(Text_t lib_dir_name) void compile_files(env_t *env, Array_t to_compile, bool only_compile_arguments, Array_t *object_files, Array_t *extra_ldlibs) { - TypeInfo *path_table_info = Table$info(&Path$info, &Path$info); + TypeInfo_t *path_table_info = Table$info(&Path$info, &Path$info); Table_t to_link = {}; Table_t argument_files = {}; Table_t dependency_files = {}; -- cgit v1.2.3