aboutsummaryrefslogtreecommitdiff
path: root/rust/util/meson.build
blob: 7ca69939ce5cc67c1bcb186d38deff6afc194cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
_util_bindgen_args = []
c_enums = [
  'module_init_type',
  'QEMUClockType',
]
foreach enum : c_enums
  _util_bindgen_args += ['--rustified-enum', enum]
endforeach

#
# TODO: Remove this comment when the clang/libclang mismatch issue is solved.
#
# Rust bindings generation with `bindgen` might fail in some cases where the
# detected `libclang` does not match the expected `clang` version/target. In
# this case you must pass the path to `clang` and `libclang` to your build
# command invocation using the environment variables CLANG_PATH and
# LIBCLANG_PATH
_util_bindings_inc_rs = rust.bindgen(
  input: 'wrapper.h',
  dependencies: common_ss.all_dependencies(),
  output: 'bindings.inc.rs',
  include_directories: bindings_incdir,
  bindgen_version: ['>=0.60.0'],
  args: bindgen_args_common + _util_bindgen_args,
)

_util_rs = static_library(
  'util',
  structured_sources(
    [
      'src/lib.rs',
      'src/bindings.rs',
      'src/error.rs',
      'src/log.rs',
      'src/module.rs',
      'src/timer.rs',
    ],
    {'.': _util_bindings_inc_rs}
  ),
  override_options: ['rust_std=2021', 'build.rust_std=2021'],
  rust_abi: 'rust',
  dependencies: [anyhow_rs, libc_rs, foreign_rs, common_rs, qom, qemuutil],
)

util_rs = declare_dependency(link_with: [_util_rs], dependencies: [qemuutil, qom])

rust.test('rust-util-tests', _util_rs,
          dependencies: [qemuutil, qom],
          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-util-rs-doctests',
     _util_rs,
     dependencies: util_rs,
     suite: ['doc', 'rust']
)