diff options
author | 2022-06-07 20:12:06 +0000 | |
---|---|---|
committer | 2022-07-12 01:20:17 +0000 | |
commit | f4b1c3a7a75fdbdf755d10f476d782c2ffe641c7 (patch) | |
tree | 852f385adb48640b277c96d8af8208771f4a269b /rust/fuzz.go | |
parent | 87d74dc54e41ef9e9077834136fd8dffc1d84f99 (diff) |
Adding support for building AFLpp
Test: Build AFL fuzzers locally and ran them
Change-Id: Ie07ec336892649192a844a4d0d231196673e34a0
Diffstat (limited to 'rust/fuzz.go')
-rw-r--r-- | rust/fuzz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/fuzz.go b/rust/fuzz.go index 55921ba4b..586095c49 100644 --- a/rust/fuzz.go +++ b/rust/fuzz.go @@ -153,7 +153,7 @@ func (s *rustFuzzPackager) GenerateBuildActions(ctx android.SingletonContext) { sharedLibraries := fuzz.CollectAllSharedDependencies(ctx, module, cc.UnstrippedOutputFile, cc.IsValidSharedDependency) // Package shared libraries - files = append(files, cc.GetSharedLibsToZip(sharedLibraries, rustModule, &s.FuzzPackager, archString, &sharedLibraryInstalled)...) + files = append(files, cc.GetSharedLibsToZip(sharedLibraries, rustModule, &s.FuzzPackager, archString, "lib", &sharedLibraryInstalled)...) archDirs[archOs], ok = s.BuildZipFile(ctx, module, fuzzModule.fuzzPackagedModule, files, builder, archDir, archString, hostOrTargetString, archOs, archDirs) if !ok { |