electron/docs/development/build-instructions-mac.md

57 lines
1 KiB
Markdown
Raw Normal View History

2013-09-09 07:35:57 +00:00
# Build instructions (Mac)
2013-08-14 22:43:35 +00:00
## Prerequisites
* OS X >= 10.8
2014-05-09 02:04:13 +00:00
* [Xcode](https://developer.apple.com/technologies/tools/) >= 5.1
* [node.js](http://nodejs.org) (external).
2013-08-14 22:43:35 +00:00
If you are using the python downloaded by Homebrew, you also need to install
following python modules:
* pyobjc
2013-08-14 22:43:35 +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 Xcode project generated.
2013-08-14 22:43:35 +00:00
```bash
$ cd atom-shell
2014-12-08 17:07:29 +00:00
$ ./script/bootstrap.py -v
2013-08-14 22:43:35 +00:00
```
## Building
Build both `Release` and `Debug` targets:
```bash
$ ./script/build.py
```
You can also only build the `Debug` target:
```bash
2015-04-10 13:56:02 +00:00
$ ./script/build.py -c D
2013-08-14 22:43:35 +00:00
```
2015-04-10 13:56:02 +00:00
After building is done, you can find `Atom.app` under `out/D`.
2013-08-14 22:43:35 +00:00
## 32bit support
Currently atom-shell can only be built for 64bit target on OS X, and there is no
plan to support 32bit on OS X in future.
2013-08-14 22:43:35 +00:00
## Tests
```bash
$ ./script/test.py
```