From d905a9d2e07c1badae631d4018d4797c1f056207 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 11 Mar 2025 00:08:26 -0400 Subject: [PATCH] Deprecate --quiet and just have that be the default --- tomo.1.md | 3 --- tomo.c | 14 +++++--------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/tomo.1.md b/tomo.1.md index 52a4d51..c641d0d 100644 --- a/tomo.1.md +++ b/tomo.1.md @@ -65,9 +65,6 @@ C code, which is then compiled using a C compiler of your choice. `-v`, `--verbose` : Print extra verbose output. -`-q`, `--quiet` -: Be extra quiet and do not print what the compiler is doing, only program output. - `-r`, `--run` : Run an installed tomo program from `~/.local/share/tomo/installed`. diff --git a/tomo.c b/tomo.c index 4d89c54..7eab296 100644 --- a/tomo.c +++ b/tomo.c @@ -33,7 +33,6 @@ static OptionalArray_t files = NONE_ARRAY, args = NONE_ARRAY; static OptionalBool_t verbose = false, - quiet = false, stop_at_transpile = false, stop_at_obj_compilation = false, stop_at_exe_compilation = false, @@ -94,7 +93,6 @@ int main(int argc, char *argv[]) " --install|-I: install the executable or library\n" " --c-compiler : the C compiler to use (default: cc)\n" " --optimization|-O : set optimization level\n" - " --quiet|-q: quiet output\n" " --run|-r: run a program from ~/.local/share/tomo/installed\n" ); Text_t help = Texts(Text("\x1b[1mtomo\x1b[m: a compiler for the Tomo programming language"), Text("\n\n"), usage); @@ -121,8 +119,6 @@ int main(int argc, char *argv[]) {"c-compiler", false, &Text$info, &cc}, {"optimization", false, &Text$info, &optimization}, {"O", false, &Text$info, &optimization}, - {"quiet", false, &Bool$info, &quiet}, - {"q", false, &Bool$info, &quiet}, ); if (show_codegen.length > 0 && Text$equal_values(show_codegen, Text("pretty"))) @@ -347,7 +343,7 @@ void build_library(Text_t lib_dir_name) if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) exit(EXIT_FAILURE); - if (!quiet || verbose) + if (verbose) printf("\x1b[2mCompiled to lib%k.so\x1b[m\n", &lib_dir_name); prog = run_cmd("objcopy --redefine-syms=symbol_renames.txt 'lib%k.so'", &lib_dir_name); @@ -533,7 +529,7 @@ void transpile_header(env_t *base_env, Text_t filename, bool force_retranspile) if (fclose(header) == -1) errx(1, "Failed to write header file: %k", &h_filename); - if (!quiet || verbose) + if (verbose) printf("\x1b[2mTranspiled to %k\x1b[m\n", &h_filename); if (show_codegen.length > 0) @@ -580,7 +576,7 @@ void transpile_code(env_t *base_env, Text_t filename, bool force_retranspile) if (fclose(c_file) == -1) errx(1, "Failed to output C code to %k", &c_filename); - if (!quiet || verbose) + if (verbose) printf("\x1b[2mTranspiled to %k\x1b[m\n", &c_filename); if (show_codegen.length > 0) @@ -606,7 +602,7 @@ void compile_object_file(Text_t filename, bool force_recompile) if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) exit(EXIT_FAILURE); - if (!quiet || verbose) + if (verbose) printf("\x1b[2mCompiled to %k\x1b[m\n", &obj_file); } @@ -642,7 +638,7 @@ Text_t compile_executable(env_t *base_env, Text_t filename, Array_t object_files if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) exit(EXIT_FAILURE); - if (!quiet || verbose) + if (verbose) printf("\x1b[2mCompiled executable: %k\x1b[m\n", &bin_name); return bin_name; }