Skip to content

Commit 84edfc7

Browse files
committed
Update doc and CI config
1 parent 48bcb2a commit 84edfc7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
RUN_FUNCTIONAL_TESTS=false
166166
RUN_FUZZ_TESTS=true
167167
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++"
169169
170170
- stage: test
171171
name: 'x86_64 Linux [GOAL: install] [bionic] [no wallet]'

doc/fuzzing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export AFLPATH=$PWD
4646
To build Bitcoin Core using AFL instrumentation (this assumes that the
4747
`AFLPATH` was set as above):
4848
```
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++
5050
export AFL_HARDEN=1
5151
cd src/
5252
make
@@ -83,7 +83,7 @@ found in the `compiler-rt` runtime libraries package).
8383
To build all fuzz targets with libFuzzer, run
8484

8585
```
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++
8787
make
8888
```
8989

0 commit comments

Comments
 (0)