Update ideal_integration.md

This commit is contained in:
Abhishek Arya 2017-01-05 23:42:44 -08:00 committed by GitHub
parent da1f8bcc10
commit 226dfeb3d7
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ and all the code it depends on, but not the `main()` function.
* The build system supports changing the compiler and passing extra compiler
flags so that the build command for a `foo_fuzzer.a` looks similar to this:
```
CC="clang $FUZZER_FLAGS" CXX="clang++ $FUZZER_FLAGS" make_or_whatever_other_command foo_fuzzer.a
```bash
$ CC="clang $FUZZER_FLAGS" CXX="clang++ $FUZZER_FLAGS" make_or_whatever_other_command foo_fuzzer.a
```
In this case, linking the target with e.g. libFuzzer will look like "clang++ libFuzzer.a foo_fuzzer.a ".