mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
Meson
37 lines
1.1 KiB
Meson
_common_cfg = run_command(rustc_args,
|
|
'--config-headers', config_host_h, '--features', files('Cargo.toml'),
|
|
capture: true, check: true).stdout().strip().splitlines()
|
|
|
|
_common_rs = static_library(
|
|
'common',
|
|
structured_sources(
|
|
[
|
|
'src/lib.rs',
|
|
'src/assertions.rs',
|
|
'src/bitops.rs',
|
|
'src/callbacks.rs',
|
|
'src/errno.rs',
|
|
'src/opaque.rs',
|
|
'src/uninit.rs',
|
|
'src/zeroable.rs',
|
|
],
|
|
),
|
|
override_options: ['rust_std=2021', 'build.rust_std=2021'],
|
|
rust_abi: 'rust',
|
|
rust_args: _common_cfg,
|
|
dependencies: [libc_rs, qemu_macros],
|
|
)
|
|
|
|
common_rs = declare_dependency(link_with: [_common_rs])
|
|
|
|
rust.test('rust-common-tests', _common_rs,
|
|
suite: ['unit', 'rust'])
|
|
|
|
# Doctests are essentially integration tests, so they need the same dependencies.
|
|
# Note that running them requires the object files for C code, so place them
|
|
# in a separate suite that is run by the "build" CI jobs rather than "check".
|
|
rust.doctest('rust-common-doctests',
|
|
_common_rs,
|
|
dependencies: common_rs,
|
|
suite: ['doc', 'rust'])
|