Add a comment to build instructions about cpplint

I added a mention of `cpplint.py` in the build instructions.
The reason, is because it's easy to miss it's existence. Even if you
noticed it's mentioned in `coding-style.md` you might mistakenly think
that `test.py` runs it).
This commit is contained in:
Eran Tiktin 2015-08-08 23:25:27 +03:00
parent 3250764e72
commit de441916d6
3 changed files with 26 additions and 2 deletions

View file

@ -106,8 +106,8 @@ Make sure you have installed all the build dependencies.
### error while loading shared libraries: libtinfo.so.5
Prebulit `clang` will try to link to `libtinfo.so.5`. Depending on the host architecture,
symlink to appropirate `libncurses`
Prebulit `clang` will try to link to `libtinfo.so.5`. Depending on the host
architecture, symlink to appropriate `libncurses`
```bash
$ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5
@ -115,6 +115,14 @@ $ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5
## Tests
Test your changes confirm to the project coding style using:
```bash
$ ./script/cpplint.py
```
Test functionality using:
```bash
$ ./script/test.py
```

View file

@ -51,6 +51,14 @@ support 32bit OS X in future.
## Tests
Test your changes confirm to the project coding style using:
```bash
$ ./script/cpplint.py
```
Test functionality using:
```bash
$ ./script/test.py
```

View file

@ -67,6 +67,14 @@ The other building steps are exactly the same.
## Tests
Test your changes confirm to the project coding style using:
```powershell
python script\cpplint.py
```
Test functionality using:
```powershell
python script\test.py
```