Create debugging.md

This commit is contained in:
Mike Aizatsky 2016-10-04 11:54:45 -07:00 committed by GitHub
parent d204145f6b
commit e7dbb49bfe
1 changed files with 12 additions and 0 deletions

12
docs/debugging.md Normal file
View File

@ -0,0 +1,12 @@
# Debugging Problems
## Debugging Build Scripts
While developing your build script, it may be useful to run bash within the
container:
```bash
$ python scripts/helper.py shell $LIB_NAME # runs /bin/bash within container
$ bash /src/oss-fuzz/$LIB_NAME/build.sh # to run the build script manually
```