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: sanitize bindgen arguments
Ensure that we do not use assignments in the bindgen options. Meson
parses these options to avoid adding duplicates, so lets provide them
cleanly.

Additionally, add `--use-core` now that we have rlib as `no_std`.

Signed-off-by: David Rheinsberg <[email protected]>
  • Loading branch information
dvdhrm committed May 9, 2025
commit 4337da4f8eff733fefed1bb1a1affa186b48c057
6 changes: 4 additions & 2 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@ else
endif

bindgen_args = [
'--formatter=prettyplease',
'--rust-edition=' + rust_edition,
'--formatter', 'prettyplease',
'--rust-edition', rust_edition,
'--rust-target', rust_msrv,
'--use-core',
]

bindgen_generated = []
Expand Down