qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] rust: fix --enable-debug-mutex


From: Bernhard Beschow
Subject: Re: [PATCH] rust: fix --enable-debug-mutex
Date: Thu, 19 Dec 2024 22:19:37 +0000


Am 19. Dezember 2024 15:37:28 UTC schrieb Paolo Bonzini <pbonzini@redhat.com>:
>--feature is an option for cargo but not for rustc.
>
>Reported-by: Bernhard Beschow <shentey@gmail.com>
>Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>---
> rust/qemu-api/meson.build | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/rust/qemu-api/meson.build b/rust/qemu-api/meson.build
>index bb779364cb2..0c08d2e51f5 100644
>--- a/rust/qemu-api/meson.build
>+++ b/rust/qemu-api/meson.build
>@@ -7,7 +7,7 @@ if rustc.version().version_compare('>=1.77.0')
>   _qemu_api_cfg += ['--cfg', 'has_offset_of']
> endif
> if get_option('debug_mutex')
>-  _qemu_api_cfg += ['--feature', 'debug_cell']
>+  _qemu_api_cfg += ['--cfg', 'feature="debug_cell"']
> endif
> 
> _qemu_api_rs = static_library(

Reviewed-by: Bernhard Beschow <shentey@gmail.com>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]