Skip to content

Commit faf905b

Browse files
author
MarcoFalke
committed
doc: Remove unused -fPIC
This is harmless, but no longer needed after commit 06b9236.
1 parent fa1e0a7 commit faf905b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

contrib/devtools/README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@ A tool to check for non-determinism in fuzz coverage. To get the help, run:
1111
RUST_BACKTRACE=1 cargo run --manifest-path ./contrib/devtools/deterministic-fuzz-coverage/Cargo.toml -- --help
1212
```
1313

14-
To execute the tool, compilation has to be done with the build options
15-
`-DCMAKE_C_COMPILER='clang' -DCMAKE_CXX_COMPILER='clang++'
16-
-DBUILD_FOR_FUZZING=ON -DCMAKE_CXX_FLAGS='-fPIC -fprofile-instr-generate
17-
-fcoverage-mapping'`. Both llvm-profdata and llvm-cov must be installed. Also,
18-
the qa-assets repository must have been cloned. Finally, a fuzz target has to
19-
be picked before running the tool:
14+
To execute the tool, compilation has to be done with the build options:
15+
16+
```
17+
-DCMAKE_C_COMPILER='clang' -DCMAKE_CXX_COMPILER='clang++' -DBUILD_FOR_FUZZING=ON -DCMAKE_CXX_FLAGS='-fprofile-instr-generate -fcoverage-mapping'
18+
```
19+
20+
Both llvm-profdata and llvm-cov must be installed. Also, the qa-assets
21+
repository must have been cloned. Finally, a fuzz target has to be picked
22+
before running the tool:
2023

2124
```
2225
RUST_BACKTRACE=1 cargo run --manifest-path ./contrib/devtools/deterministic-fuzz-coverage/Cargo.toml -- $PWD/build_dir $PWD/qa-assets/corpora-dir fuzz_target_name

0 commit comments

Comments
 (0)