From 2d28fd9b8076c21e7a046a2f6b6ed9ef696b2315 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Thu, 6 Jun 2024 13:30:52 +0200 Subject: [build] debug --- build.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.c b/build.c index 6ab26e2..596d2f9 100755 --- a/build.c +++ b/build.c @@ -550,12 +550,16 @@ i32 main(i32 argc, c8 **argv) { } fflush(stdout); + printf(" .. clean"); fflush(stdout); system(fmt("\"." DLM "%s" DLM "test_interprocess\" clean", destination)); + printf(" .. reader"); fflush(stdout); if (OS == WINDOWS) system(fmt("start "" /b \"." DLM "%s" DLM "test_interprocess\" reader", destination)); else system(fmt("\"." DLM "%s" DLM "test_interprocess\" reader &", destination)); + printf(" .. writer"); fflush(stdout); code = system(fmt("\"." DLM "%s" DLM "test_interprocess\" writer", destination)); + printf(" .. done"); fflush(stdout); if (code == 0) printf("interprocess - OK\n"); else { -- cgit v1.2.3