When building meson packages with samurai, progress isn't saved
When using meson to build a program, meson won't save previously done compilations and targets. An example is
# Compiling any package from a CLI...
meson build
ninja
ninja install # Will call ninja again, and build, even when it was already built.
This will happen with ninja
+ ninja install
, or even ninja
+ ninja
, if any job has been done so far, meson won't care and will start all over again.
The meson version is 0.53.2
.
Edited by Rasmus Thomsen