Files
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

10 lines
346 B
Meson

rustc = meson.get_compiler('rust')
if rustc.version().version_compare('<1.65.0')
error('rustc version ' + rustc.version() + ' is unsupported. Please upgrade to at least 1.65.0')
endif
extra_args += [ '--cfg', 'std_backtrace' ] # >= 1.65.0
if rustc.version().version_compare('<1.81.0')
extra_args += [ '--cfg', 'anyhow_no_core_error' ]
endif