Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
fix prysm
Browse files Browse the repository at this point in the history
  • Loading branch information
pventuzelo committed Oct 2, 2020
1 parent 7edfe4f commit f596b99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion beaconfuzz_v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ cp -r beacon-fuzz/beaconfuzz_v2/libs/pfuzz prysm/
Compile the prysm fuzzing library:
```
go get .
go build -o libpfuzz.a -buildmode=c-archive pfuzz.go
go build -o libpfuzz.a -tags=blst_enabled,libfuzzer -buildmode=c-archive pfuzz.go
```
-->
Set the following variable with the current path of prysm:
Expand Down
2 changes: 1 addition & 1 deletion beaconfuzz_v2/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ RUN go get -u github.com/prysmaticlabs/prysm || true

# Compile pfuzz lib
RUN cd /prysm/pfuzz/ && go get . || true
RUN cd /prysm/pfuzz/ && go build -o -tags=blst_enabled libpfuzz.a -buildmode=c-archive pfuzz.go
RUN cd /prysm/pfuzz/ && go build -o -tags=blst_enabled,libfuzzer libpfuzz.a -buildmode=c-archive pfuzz.go



Expand Down
2 changes: 1 addition & 1 deletion eth2fuzz/src/go_fuzzers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl FuzzerGoLibfuzzer {

let compile_lib = Command::new("/eth2fuzz/bin/go114-fuzz-build")
.args(&[
"-func",
"-tags=blst_enabled,libfuzzer",
&self.some_kind_of_uppercase_first_letter(&target.name()),
"github.com/prysmaticlabs/prysm",
])
Expand Down

0 comments on commit f596b99

Please sign in to comment.