2015-08-31 21:13:05 -07:00
|
|
|
# Build Instructions (OS X)
|
2015-08-30 22:30:23 -07:00
|
|
|
|
2015-08-31 21:13:05 -07:00
|
|
|
Follow the guidelines below for building Electron on OS X.
|
2013-09-09 15:35:57 +08:00
|
|
|
|
2013-08-14 15:43:35 -07:00
|
|
|
## Prerequisites
|
|
|
|
|
2015-02-02 16:21:23 +08:00
|
|
|
* OS X >= 10.8
|
2014-05-09 10:04:13 +08:00
|
|
|
* [Xcode](https://developer.apple.com/technologies/tools/) >= 5.1
|
2015-08-30 22:30:23 -07:00
|
|
|
* [node.js](http://nodejs.org) (external)
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2015-08-30 22:30:23 -07:00
|
|
|
If you are using the Python downloaded by Homebrew, you also need to install
|
2013-11-26 11:46:45 +08:00
|
|
|
following python modules:
|
|
|
|
|
|
|
|
* pyobjc
|
|
|
|
|
2015-08-30 22:30:23 -07:00
|
|
|
## Getting the Code
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
```bash
|
2015-04-16 11:31:12 +08:00
|
|
|
$ git clone https://github.com/atom/electron.git
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
## Bootstrapping
|
|
|
|
|
2013-08-29 16:37:51 +02:00
|
|
|
The bootstrap script will download all necessary build dependencies and create
|
2015-08-30 22:30:23 -07:00
|
|
|
the build project files. Notice that we're using `ninja` to build Electron so
|
2013-08-29 16:37:51 +02:00
|
|
|
there is no Xcode project generated.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
|
|
|
```bash
|
2015-04-16 11:31:12 +08:00
|
|
|
$ cd electron
|
2014-12-08 20:07:29 +03:00
|
|
|
$ ./script/bootstrap.py -v
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
Build both `Release` and `Debug` targets:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./script/build.py
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also only build the `Debug` target:
|
|
|
|
|
|
|
|
```bash
|
2015-04-10 21:56:02 +08:00
|
|
|
$ ./script/build.py -c D
|
2013-08-14 15:43:35 -07:00
|
|
|
```
|
|
|
|
|
2015-04-16 11:31:12 +08:00
|
|
|
After building is done, you can find `Electron.app` under `out/D`.
|
2013-08-14 15:43:35 -07:00
|
|
|
|
2015-08-30 22:30:23 -07:00
|
|
|
## 32bit Support
|
2014-05-05 09:48:44 +08:00
|
|
|
|
2015-08-30 22:30:23 -07:00
|
|
|
Electron can only be built for a 64bit target on OS X and there is no plan to
|
2015-04-16 11:31:12 +08:00
|
|
|
support 32bit OS X in future.
|
2014-05-05 09:48:44 +08:00
|
|
|
|
2013-08-14 15:43:35 -07:00
|
|
|
## Tests
|
|
|
|
|
2015-08-30 22:30:23 -07:00
|
|
|
Test your changes conform to the project coding style using:
|
2015-08-08 23:25:27 +03:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ ./script/cpplint.py
|
|
|
|
```
|
|
|
|
|
|
|
|
Test functionality using:
|
|
|
|
|
2013-08-14 15:43:35 -07:00
|
|
|
```bash
|
|
|
|
$ ./script/test.py
|
|
|
|
```
|