mirror of https://github.com/google/oss-fuzz.git
Update new_project_guide.md (#5805)
* Update new_project_guide.md Rewrite instructions under "Temporarily disabling code instrumentation during builds" section for greater clarity. * Update new_project_guide.md
This commit is contained in:
parent
61222ade64
commit
684c6c13c6
|
@ -253,11 +253,8 @@ alphanumeric characters, underscore(_) or dash(-). Otherwise, they won't run on
|
|||
|
||||
### Temporarily disabling code instrumentation during builds
|
||||
|
||||
Sometimes not every 3rd party library might be needed to be instrumented or
|
||||
tools are being compiled that just support the target built.
|
||||
In some cases, it's not necessary to instrument every 3rd party library or tool that supports the build target. Use the following snippet to build tools or libraries without instrumentation:
|
||||
|
||||
If for any reasons part of the build process should not be instrumented
|
||||
then the following code snippet can be used for this:
|
||||
|
||||
```
|
||||
CFLAGS_SAVE="$CFLAGS"
|
||||
|
|
Loading…
Reference in New Issue