Update QEMU version. (#1922)

* update QEMU version.

* clippy
This commit is contained in:
Romain Malmain 2024-03-08 13:15:00 +01:00 committed by GitHub
parent d6fe67c3c8
commit e745401a39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 4 deletions

View File

@ -27,8 +27,13 @@
//! # SymCC and SymQEMU expect to runtime file to be called `libSymRuntime.so`. Setting the name to `SymRuntime` achieves this. //! # SymCC and SymQEMU expect to runtime file to be called `libSymRuntime.so`. Setting the name to `SymRuntime` achieves this.
//! name = "SymRuntime" //! name = "SymRuntime"
//! ``` //! ```
#![allow(clippy::module_name_repetitions, clippy::missing_panics_doc)] #![allow(
#![allow(clippy::pub_underscore_fields)] clippy::module_name_repetitions,
clippy::missing_panics_doc,
clippy::pub_underscore_fields,
clippy::mixed_attributes_style
)]
pub mod filter; pub mod filter;
pub mod tracing; pub mod tracing;

View File

@ -8,7 +8,7 @@ use which::which;
const QEMU_URL: &str = "https://github.com/AFLplusplus/qemu-libafl-bridge"; const QEMU_URL: &str = "https://github.com/AFLplusplus/qemu-libafl-bridge";
const QEMU_DIRNAME: &str = "qemu-libafl-bridge"; const QEMU_DIRNAME: &str = "qemu-libafl-bridge";
const QEMU_REVISION: &str = "75d15d54f4417a4766d2dcb493982d9df0e8eac4"; const QEMU_REVISION: &str = "f282d6aef5e28421255293ebbb52d835281f2730";
pub struct BuildResult { pub struct BuildResult {
pub qemu_path: PathBuf, pub qemu_path: PathBuf,

View File

@ -14,7 +14,8 @@
clippy::missing_panics_doc, clippy::missing_panics_doc,
clippy::missing_docs_in_private_items, clippy::missing_docs_in_private_items,
clippy::module_name_repetitions, clippy::module_name_repetitions,
clippy::pub_underscore_fields clippy::pub_underscore_fields,
clippy::mixed_attributes_style
)] )]
#![cfg_attr(not(test), warn( #![cfg_attr(not(test), warn(
missing_debug_implementations, missing_debug_implementations,