Mention sunny-day test suite in build docs

This commit is contained in:
Thomas Jensen 2024-01-31 21:34:06 +01:00
parent e3d9ed4647
commit 464a1ef49b
No known key found for this signature in database
GPG Key ID: A4ACEE270D0FB7DB

View File

@ -100,6 +100,7 @@ Then invoke these targets:
make clean cov make clean cov
make utest make utest
make covtest-sunny
make covtest make covtest
The results will be logged in the console and also recorded in *out/lcov-total.info*. The results will be logged in the console and also recorded in *out/lcov-total.info*.
@ -109,13 +110,12 @@ The results will be logged in the console and also recorded in *out/lcov-total.i
{% include heading.html level=3 {% include heading.html level=3
text="Static Binary" %} text="Static Binary" %}
Sometimes, you may want to run *boxes* on a system where the required libunistring and pcre libraries are not Sometimes, you may want to run *boxes* on a system where the required libraries are not available as shared libraries.
available as shared libraries. In such cases, linking all the dependencies into the *boxes* binary can be In such cases, linking all the dependencies into the *boxes* binary can be helpful. This is achieved by
helpful. This is achieved by
make clean static make clean static
This will download and compile libunistring and PCRE, and then produce a static binary with everything on board. This will download and compile the dependencies, and then produce a static binary with everything on board.
<p><br></p> <p><br></p>
<hr> <hr>