From be587980780cbed0a7ece95a61ed8f52d7a159e4 Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Tue, 2 Jan 2024 20:31:41 +0100 Subject: [PATCH] DEVELOPMENT.md: on FreeBSD, install GNU coreutils package to build/run tests Signed-off-by: Laurent Cheylus --- DEVELOPMENT.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 29cfe2b2a..6f1de3b54 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -1,4 +1,4 @@ - + # Setting up your local development environment @@ -241,6 +241,12 @@ DEBUG=1 bash util/run-gnu-test.sh tests/misc/sm3sum.pl Note that GNU test suite relies on individual utilities (not the multicall binary). +On FreeBSD, you need to install packages for GNU coreutils and sed (used in shell scripts instead of system commands): + +```shell +pkg install coreutils gsed +``` + ## Code coverage report Code coverage report can be generated using [grcov](https://github.com/mozilla/grcov).