This is just a bit nicer. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Link: https://lore.kernel.org/r/20250827104147.717203-22-marcandre.lureau@redhat.com Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
42 lines
1.2 KiB
Meson
42 lines
1.2 KiB
Meson
c_enums = [
|
|
'device_endian',
|
|
]
|
|
_system_bindgen_args = []
|
|
foreach enum : c_enums
|
|
_system_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
|
|
_system_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 + _system_bindgen_args,
|
|
)
|
|
|
|
_system_rs = static_library(
|
|
'system',
|
|
structured_sources(
|
|
[
|
|
'src/lib.rs',
|
|
'src/bindings.rs',
|
|
'src/memory.rs',
|
|
],
|
|
{'.': _system_bindings_inc_rs}
|
|
),
|
|
override_options: ['rust_std=2021', 'build.rust_std=2021'],
|
|
rust_abi: 'rust',
|
|
link_with: [_bql_rs, _migration_rs, _qom_rs, _util_rs],
|
|
dependencies: [common_rs, qemu_macros],
|
|
)
|
|
|
|
system_rs = declare_dependency(link_with: [_system_rs],
|
|
dependencies: [hwcore])
|