diff --git a/tomo.c b/tomo.c index 1832c29..0a6694f 100644 --- a/tomo.c +++ b/tomo.c @@ -306,7 +306,7 @@ void build_library(Text_t lib_dir_name) if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) exit(EXIT_FAILURE); - printf("Compiled to lib%k.so\n", &lib_dir_name); + 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); status = pclose(prog); @@ -491,7 +491,7 @@ void transpile_header(env_t *base_env, Text_t filename, bool force_retranspile) if (pclose(prog) == -1) errx(1, "Failed to run autoformat program on header file: %k", &autofmt); - printf("Transpiled to %k\n", &h_filename); + printf("\x1b[2mTranspiled to %k\x1b[m\n", &h_filename); if (show_codegen) system(heap_strf("bat -P %k", &h_filename)); @@ -532,7 +532,7 @@ void transpile_code(env_t *base_env, Text_t filename, bool force_retranspile) if (pclose(out) == -1) errx(1, "Failed to output autoformatted C code to %k: %k", &c_filename, &autofmt); - printf("Transpiled to %k\n", &c_filename); + printf("\x1b[2mTranspiled to %k\x1b[m\n", &c_filename); if (show_codegen) system(heap_strf("bat -P %k", &c_filename)); @@ -557,7 +557,7 @@ void compile_object_file(Text_t filename, bool force_recompile) if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) exit(EXIT_FAILURE); - printf("Compiled to %k\n", &obj_file); + printf("\x1b[2mCompiled to %k\x1b[m\n", &obj_file); } Text_t compile_executable(env_t *base_env, Text_t filename, Array_t object_files, Array_t extra_ldlibs) @@ -592,7 +592,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); - printf("Compiled executable: %k\n", &bin_name); + printf("\x1b[2mCompiled executable: %k\x1b[m\n", &bin_name); return bin_name; }