From 1306ed492870f284746dd0b1c24060230050bb59 Mon Sep 17 00:00:00 2001 From: William Whitehouse Date: Sun, 28 Sep 2025 09:24:22 +0100 Subject: [PATCH] Added pipe-nt file ignore to tup Linking programs using mingw on win32 sometimes causes a pipe-nt file to be generated. Tup should ignore this file type as it is a temporary file produced by the linker. --- src/dllinject/dllinject.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dllinject/dllinject.c b/src/dllinject/dllinject.c index 672c1e512..a11126902 100644 --- a/src/dllinject/dllinject.c +++ b/src/dllinject/dllinject.c @@ -1657,6 +1657,8 @@ static int ignore_file_w(const wchar_t *file) return 1; if (wcscasestr(file, L"SQM\\sqmcpp.log") != NULL) return 1; + if (wcsstr(file, L"-pipe-nt-0x") != NULL) + return 1; return 0; }