summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChloe M <chloe@faracom.org>2026-08-16 01:59:27 -0500
committerChloe M <chloe@faracom.org>2026-08-16 01:59:27 -0500
commit03640e962969ef5db9c036e1c24fee6da0f3802d (patch)
tree4cc148cd2ae55cfa7c91c4691b465129a143254e /core
parent708526c3dc1f0dace5a7f518c02c6ab7a6951664 (diff)
build: Be more verbose with builds
Signed-off-by: Chloe M <chloe@faracom.org>
Diffstat (limited to 'core')
-rw-r--r--core/build.c1
1 files changed, 1 insertions, 0 deletions
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);