From 5754ca254be68f9b3dad9f56a9488d968c08c82b Mon Sep 17 00:00:00 2001 From: Graeme Geldenhuys Date: Mon, 29 Jun 2026 12:08:17 +0100 Subject: [PATCH] build(bif-coverage): add stdlib unit path so it builds by default The tool is now activeByDefault, so it is reached by a plain 'pasbuild compile'. With manualUnitPaths=true it only searches the listed paths, which lacked the stdlib directory where SysUtils and the other units it uses live, so the default build failed with 'Unit SysUtils not found'. Add ../../stdlib/src/main/pascal, mirroring the compiler module's own stdlib unit path. --- tools/bif-coverage/project.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/bif-coverage/project.xml b/tools/bif-coverage/project.xml index fa94320..9f0c97d 100644 --- a/tools/bif-coverage/project.xml +++ b/tools/bif-coverage/project.xml @@ -11,6 +11,8 @@ src/main/pascal ../../compiler/src/main/pascal + + ../../stdlib/src/main/pascal