Skip to content

Commit 03e6370

Browse files
committed
librasan: Rename cc to libc
1 parent 773c106 commit 03e6370

File tree

14 files changed

+11
-11
lines changed

14 files changed

+11
-11
lines changed

libafl_qemu/librasan/asan/build.rs

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ fn compile(file: &str, output: &str) {
55
.flag("-Werror")
66
.flag("-fno-stack-protector")
77
.flag("-ffunction-sections")
8-
.include("cc/include/")
8+
.include("libc/include/")
99
.file(file)
1010
.compile(output);
1111
}
1212

1313
fn main() {
14-
println!("cargo:rerun-if-changed=cc");
14+
println!("cargo:rerun-if-changed=libc");
1515

16-
compile("cc/src/asprintf.c", "asprintf");
17-
compile("cc/src/log.c", "log");
18-
compile("cc/src/printf.c", "printf");
19-
compile("cc/src/vasprintf.c", "vasprintf");
16+
compile("libc/src/asprintf.c", "asprintf");
17+
compile("libc/src/log.c", "log");
18+
compile("libc/src/printf.c", "printf");
19+
compile("libc/src/vasprintf.c", "vasprintf");
2020

21-
compile("cc/src/memcmp.c", "memcmp");
22-
compile("cc/src/memcpy.c", "memcpy");
23-
compile("cc/src/memmove.c", "memmove");
24-
compile("cc/src/memset.c", "memset");
25-
compile("cc/src/strlen.c", "strlen");
21+
compile("libc/src/memcmp.c", "memcmp");
22+
compile("libc/src/memcpy.c", "memcpy");
23+
compile("libc/src/memmove.c", "memmove");
24+
compile("libc/src/memset.c", "memset");
25+
compile("libc/src/strlen.c", "strlen");
2626
}

0 commit comments

Comments
 (0)