2014-02-20 10:39:24 +00:00
# Build instructions (Linux)
## Prerequisites
2014-05-07 05:06:35 +00:00
* [Node.js ](http://nodejs.org )
2014-02-20 10:56:59 +00:00
* clang and headers of GTK+ and libnotify
On Ubuntu you could install the libraries via:
```bash
2014-05-18 12:07:34 +00:00
$ sudo apt-get install build-essential clang libgtk2.0-dev libnotify-dev gcc-multilib g++-multilib
2014-05-15 06:12:40 +00:00
```
Latest Node.js could be installed via ppa:
```bash
$ sudo apt-get install python-software-properties software-properties-common
$ sudo add-apt-repository ppa:chris-lea/node.js
$ sudo apt-get update
$ sudo apt-get install nodejs
# Update to latest npm
$ sudo npm install npm -g
2014-02-20 10:56:59 +00:00
```
2014-02-20 10:39:24 +00:00
## Getting the code
```bash
$ git clone https://github.com/atom/atom-shell.git
```
## Bootstrapping
The bootstrap script will download all necessary build dependencies and create
build project files. Notice that we're using `ninja` to build `atom-shell` so
there is no `Makefile` generated.
```bash
$ cd atom-shell
$ ./script/bootstrap.py
```
## Building
Build both `Release` and `Debug` targets:
```bash
$ ./script/build.py
```
You can also only build the `Debug` target:
```bash
$ ./script/build.py -c Debug
```
2014-03-13 06:20:48 +00:00
After building is done, you can find `atom` under `out/Debug` .
2014-02-20 10:39:24 +00:00
2014-05-05 01:48:44 +00:00
## 32bit support
Currently atom-shell can only be built for 64bit target, support for 32bit would
come in future, patches would also be welcomed.
2014-02-20 10:39:24 +00:00
## Troubleshooting
If you got an error like this:
````
In file included from /usr/include/stdio.h:28:0,
from ../../../svnsrc/libgcc/../gcc/tsystem.h:88,
from ../../../svnsrc/libgcc/libgcc2.c:29:
/usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory
#include < bits / predefs . h >
````
Then you need to install `gcc-multilib` and `g++-multilib` , on Ubuntu you can do
this:
```bash
2014-02-20 10:51:57 +00:00
$ sudo apt-get install gcc-multilib g++-multilib
2014-02-20 10:39:24 +00:00
```
2014-08-05 11:33:38 +00:00
If you got an error like this:
````
/usr/bin/ld: vendor/download/libchromiumcontent/Release/libchromiumcontent.so: undefined reference to symbol 'gconf_client_get'
//usr/lib/x86_64-linux-gnu/libgconf-2.so.4: error adding symbols: DSO missing from command line
````
libchromiumcontent.so is build with clang 3.0 which is incompatible with newer versions of clang. Try using clang 3.0, default version in Ubuntu 12.04.
2014-02-20 10:39:24 +00:00
## Tests
```bash
$ ./script/test.py
```