Merge remote-tracking branch 'atom/master'

This commit is contained in:
Plusb Preco 2015-08-21 11:41:07 +09:00
commit ad24c11f32
171 changed files with 4032 additions and 968 deletions

View file

@ -17,7 +17,7 @@ On Ubuntu, install the following libraries:
$ sudo apt-get install build-essential clang libdbus-1-dev libgtk2.0-dev \
libnotify-dev libgnome-keyring-dev libgconf2-dev \
libasound2-dev libcap-dev libcups2-dev libxtst-dev \
libxss1 gcc-multilib g++-multilib
libxss1 libnss3-dev gcc-multilib g++-multilib
```
Other distributions may offer similar packages for installation via package
@ -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
```