diff options
| author | Chloe M <chloe@faracom.org> | 2026-08-16 01:59:27 -0500 |
|---|---|---|
| committer | Chloe M <chloe@faracom.org> | 2026-08-16 01:59:27 -0500 |
| commit | 03640e962969ef5db9c036e1c24fee6da0f3802d (patch) | |
| tree | 4cc148cd2ae55cfa7c91c4691b465129a143254e | |
| parent | 708526c3dc1f0dace5a7f518c02c6ab7a6951664 (diff) | |
build: Be more verbose with builds
Signed-off-by: Chloe M <chloe@faracom.org>
| -rw-r--r-- | core/build.c | 1 |
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); |
