Merge pull request #2456 from etiktin/update_build_md

Add a comment to build instructions about cpplint
This commit is contained in:
Cheng Zhao 2015-08-10 11:21:51 +08:00
commit ebfd03570f
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
```