--libaf-no-link (#464)

This commit is contained in:
Andrea Fioraldi 2022-01-13 10:03:02 +01:00 committed by GitHub
parent de5264efad
commit 906bb4e653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,6 +110,10 @@ impl CompilerWrapper for ClangWrapper {
for arg in &args[1..] {
match arg.as_ref() {
"--libafl-no-link" => {
linking = false;
continue;
}
"-x" => self.x_set = true,
"-m32" => self.bit_mode = 32,
"-m64" => self.bit_mode = 64,