2017-05-28 19:57:57 +00:00
|
|
|
The source files are assembled into a rom using [**rgbds**](https://github.com/rednex/rgbds).
|
2016-01-31 23:36:18 +00:00
|
|
|
These instructions explain how to set up the tools required to build.
|
|
|
|
|
2017-09-24 05:34:44 +00:00
|
|
|
If you run into trouble, ask for help on irc or discord (see [README.md](README.md)).
|
2016-03-16 21:57:03 +00:00
|
|
|
|
2016-01-31 23:36:18 +00:00
|
|
|
|
2015-02-06 21:41:57 +00:00
|
|
|
# Linux
|
2014-07-24 03:42:04 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
2017-06-13 20:50:28 +00:00
|
|
|
sudo apt-get install make gcc bison git libpng-dev
|
2014-07-24 03:42:04 +00:00
|
|
|
|
2017-05-28 19:57:57 +00:00
|
|
|
git clone https://github.com/rednex/rgbds
|
2015-10-22 05:15:07 +00:00
|
|
|
cd rgbds
|
|
|
|
sudo make install
|
|
|
|
cd ..
|
2014-11-12 15:30:37 +00:00
|
|
|
|
2017-04-28 04:38:14 +00:00
|
|
|
git clone https://github.com/pret/pokecrystal
|
2015-10-22 05:15:07 +00:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2014-07-24 03:42:04 +00:00
|
|
|
|
2015-02-06 21:41:57 +00:00
|
|
|
To build **pokecrystal.gbc**:
|
2014-07-24 03:42:04 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|
2012-06-02 20:27:24 +00:00
|
|
|
|
|
|
|
|
2015-10-25 07:26:12 +00:00
|
|
|
# Mac
|
2015-02-06 21:41:57 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
In **Terminal**, run:
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
2015-10-25 07:26:12 +00:00
|
|
|
xcode-select --install
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2017-05-28 19:57:57 +00:00
|
|
|
git clone https://github.com/rednex/rgbds
|
2015-10-22 05:15:07 +00:00
|
|
|
cd rgbds
|
|
|
|
sudo make install
|
|
|
|
cd ..
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2017-04-28 04:38:14 +00:00
|
|
|
git clone https://github.com/pret/pokecrystal
|
2015-10-22 05:15:07 +00:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2013-08-03 18:55:45 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
To build **pokecrystal.gbc**:
|
2013-08-12 16:36:27 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|
2013-08-12 16:36:27 +00:00
|
|
|
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2015-02-06 21:41:57 +00:00
|
|
|
# Windows
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2016-03-16 21:57:03 +00:00
|
|
|
To build on Windows, install [**Cygwin**](http://cygwin.com/install.html) with the default settings.
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2017-09-24 05:34:44 +00:00
|
|
|
In the installer, select the following packages:
|
|
|
|
- `make`
|
|
|
|
- `git`
|
|
|
|
- `gcc-core`
|
2016-01-31 23:27:32 +00:00
|
|
|
|
2017-09-24 05:34:44 +00:00
|
|
|
Then download [**rgbds**](https://github.com/rednex/rgbds/releases/).
|
2017-06-24 20:51:35 +00:00
|
|
|
Extract the archive and put all the `exe` and `dll` files individually in `C:\cygwin64\usr\local\bin`.
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2017-09-24 05:34:44 +00:00
|
|
|
**Note: If you have an older rgbds, you will need to update to 0.3.3 or newer.** Ignore this if you have never installed rgbds before.
|
|
|
|
|
2015-02-06 21:41:57 +00:00
|
|
|
In the **Cygwin terminal**:
|
2012-06-02 20:27:24 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2017-04-28 04:38:14 +00:00
|
|
|
git clone https://github.com/pret/pokecrystal
|
2015-10-22 05:15:07 +00:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2013-08-03 18:57:10 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
To build **pokecrystal.gbc**:
|
2014-03-08 15:46:13 +00:00
|
|
|
|
2015-10-22 05:15:07 +00:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|