File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ jobs:
165
165
RUN_FUNCTIONAL_TESTS=false
166
166
RUN_FUZZ_TESTS=true
167
167
GOAL="install"
168
- BITCOIN_CONFIG="--disable-wallet --disable-bench --with-utils=no --with-daemon=no --with-libs=no --with-gui=no -- enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++"
168
+ BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++"
169
169
170
170
- stage : test
171
171
name : ' x86_64 Linux [GOAL: install] [bionic] [no wallet]'
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export AFLPATH=$PWD
46
46
To build Bitcoin Core using AFL instrumentation (this assumes that the
47
47
` AFLPATH ` was set as above):
48
48
```
49
- ./configure --disable-ccache --disable-shared --enable-tests --enable-fuzz --disable-wallet --disable-bench --with-utils=no --with-daemon=no --with-libs=no --with-gui=no CC=${AFLPATH}/afl-gcc CXX=${AFLPATH}/afl-g++
49
+ ./configure --disable-ccache --disable-shared --enable-tests --enable-fuzz CC=${AFLPATH}/afl-gcc CXX=${AFLPATH}/afl-g++
50
50
export AFL_HARDEN=1
51
51
cd src/
52
52
make
@@ -83,7 +83,7 @@ found in the `compiler-rt` runtime libraries package).
83
83
To build all fuzz targets with libFuzzer, run
84
84
85
85
```
86
- ./configure --disable-ccache --disable-wallet --disable-bench --with-utils=no --with-daemon=no --with-libs=no --with-gui=no -- enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++
86
+ ./configure --disable-ccache --enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++
87
87
make
88
88
```
89
89
You can’t perform that action at this time.
0 commit comments