From 03640e962969ef5db9c036e1c24fee6da0f3802d Mon Sep 17 00:00:00 2001 From: Chloe M Date: Sun, 16 Aug 2026 01:59:27 -0500 Subject: build: Be more verbose with builds Signed-off-by: Chloe M --- core/build.c | 1 + 1 file changed, 1 insertion(+) (limited to 'core/build.c') diff --git a/core/build.c b/core/build.c index f4ec00b..b61ab3c 100644 --- a/core/build.c +++ b/core/build.c @@ -105,6 +105,7 @@ invoke_cc(const char *cfile_path, struct build_params *params) snprintf(outpath, sizeof(outpath), "%s.o", trunc_ext); child = fork(); if (child == 0) { + printf("[CC]\t\t%s\n", cfile_path); execl(BOP_CC, BOP_CC, "-c", cfile_path, "-o", outpath, BOP_DEFAULT_CFLAGS, NULL); } else { waitpid(child, &status, 0); -- cgit v1.2.3