Disable capstone when building qemu-afl-bridge for user-mode fuzzing (#1281)
Co-authored-by: Your Name <you@example.com>
This commit is contained in:
parent
52557aefdd
commit
4029069640
@ -138,7 +138,12 @@ pub fn build(
|
|||||||
//.arg("--as-static-lib")
|
//.arg("--as-static-lib")
|
||||||
.arg("--as-shared-lib")
|
.arg("--as-shared-lib")
|
||||||
.arg(&format!("--target-list={cpu_target}-{target_suffix}"))
|
.arg(&format!("--target-list={cpu_target}-{target_suffix}"))
|
||||||
.args(["--disable-bsd-user", "--disable-fdt", "--disable-system"]);
|
.args([
|
||||||
|
"--disable-bsd-user",
|
||||||
|
"--disable-fdt",
|
||||||
|
"--disable-system",
|
||||||
|
"--disable-capstone",
|
||||||
|
]);
|
||||||
if cfg!(feature = "debug_assertions") {
|
if cfg!(feature = "debug_assertions") {
|
||||||
cmd.arg("--enable-debug");
|
cmd.arg("--enable-debug");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user