Skip to content

util/acct: implement a new hierarchical accounting system #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
build: guard doctests by !cross_compile
Ensure that we do not run doctests when cross-compiling. This can easily
fail and there is no suitable way for us to check whether `rustdoc` is
available:

    mesonbuild/meson#14583

Signed-off-by: David Rheinsberg <[email protected]>
  • Loading branch information
dvdhrm committed May 9, 2025
commit 03aedff1e3d053e3bc288d078733ffeabfbab041
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ mod_rust.test(
suite: 'unit',
)

if meson.version().version_compare('>=1.8')
if meson.version().version_compare('>=1.8') and not meson.is_cross_build()
mod_rust.doctest(
'rbus-doctests',
rust_bus,
Expand Down
Loading