summaryrefslogtreecommitdiff
path: root/rust/fuzz.go
diff options
context:
space:
mode:
author Tri Vo <trong@google.com> 2021-04-08 15:50:48 -0700
committer Tri Vo <trong@google.com> 2021-04-13 15:58:44 -0700
commit505b0e8991709396fb959823e04c8cfe73163bf3 (patch)
treee7ab233164a58356f06d6bbc4d5e49c843e8ce82 /rust/fuzz.go
parentc8ae73e67825200efa8458f594115b1dcd7773ce (diff)
rust: Switch rust_fuzz to HWASan
Bug: 180495975 Test: example_rust_fuzzer Change-Id: I26e6f15136ee2d5f4ed1167be5c1c6a14b19421a
Diffstat (limited to 'rust/fuzz.go')
-rw-r--r--rust/fuzz.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/rust/fuzz.go b/rust/fuzz.go
index 6b0a943f2..d69997114 100644
--- a/rust/fuzz.go
+++ b/rust/fuzz.go
@@ -73,9 +73,6 @@ func (fuzzer *fuzzDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
if libFuzzerRuntimeLibrary := config.LibFuzzerRuntimeLibrary(ctx.toolchain()); libFuzzerRuntimeLibrary != "" {
deps.StaticLibs = append(deps.StaticLibs, libFuzzerRuntimeLibrary)
}
- if libclangRuntimeLibrary := config.LibclangRuntimeLibrary(ctx.toolchain(), "asan"); libclangRuntimeLibrary != "" {
- deps.SharedLibs = append(deps.SharedLibs, libclangRuntimeLibrary)
- }
deps.SharedLibs = append(deps.SharedLibs, "libc++")
deps.Rlibs = append(deps.Rlibs, "liblibfuzzer_sys")