summaryrefslogtreecommitdiff
path: root/rust/fuzz.go
diff options
context:
space:
mode:
authorTri Vo <trong@google.com>2021-04-14 16:49:27 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-04-14 16:49:27 +0000
commit9e7bfdae31f8b3bb16a7cb30a19f20881d9dec8f (patch)
tree19696972c7bac3cfb96069745c4391f299f2e97d /rust/fuzz.go
parent08abf7274add9a07b4899ad8abf968c8896d0508 (diff)
parent505b0e8991709396fb959823e04c8cfe73163bf3 (diff)
Merge "rust: Switch rust_fuzz to HWASan"
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")