2016-01-31 18:42:32 -05:00
|
|
|
The source files are assembled into a rom using [**rgbds**](https://github.com/bentley/rgbds).
|
2016-01-31 18:36:18 -05:00
|
|
|
These instructions explain how to set up the tools required to build.
|
|
|
|
|
|
|
|
|
2015-02-06 13:41:57 -08:00
|
|
|
# Linux
|
2014-07-23 22:42:04 -05:00
|
|
|
|
2016-01-31 18:36:18 -05:00
|
|
|
Python 2.7 is required.
|
2015-06-09 10:44:24 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
2016-02-17 16:44:27 -05:00
|
|
|
sudo apt-get install make gcc bison git python
|
2014-07-23 22:42:04 -05:00
|
|
|
|
2015-10-25 03:23:33 -04:00
|
|
|
git clone https://github.com/bentley/rgbds
|
2015-10-22 01:15:07 -04:00
|
|
|
cd rgbds
|
|
|
|
sudo make install
|
|
|
|
cd ..
|
2014-11-12 10:30:37 -05:00
|
|
|
|
2015-10-25 03:23:33 -04:00
|
|
|
git clone --recursive https://github.com/pret/pokecrystal
|
2015-10-22 01:15:07 -04:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2014-07-23 22:42:04 -05:00
|
|
|
|
2015-02-06 13:41:57 -08:00
|
|
|
To build **pokecrystal.gbc**:
|
2014-07-23 22:42:04 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|
2012-06-02 15:27:24 -05:00
|
|
|
|
|
|
|
|
2015-10-25 03:26:12 -04:00
|
|
|
# Mac
|
2015-02-06 13:41:57 -08:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
In **Terminal**, run:
|
2014-03-08 10:46:13 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
2015-10-25 03:26:12 -04:00
|
|
|
xcode-select --install
|
2012-06-02 15:27:24 -05:00
|
|
|
|
2015-10-25 03:23:33 -04:00
|
|
|
git clone https://github.com/bentley/rgbds
|
2015-10-22 01:15:07 -04:00
|
|
|
cd rgbds
|
|
|
|
sudo make install
|
|
|
|
cd ..
|
2012-06-02 15:27:24 -05:00
|
|
|
|
2015-10-25 03:23:33 -04:00
|
|
|
git clone --recursive https://github.com/pret/pokecrystal
|
2015-10-22 01:15:07 -04:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2013-08-03 13:55:45 -05:00
|
|
|
|
2014-03-08 10:46:13 -05:00
|
|
|
To build **pokecrystal.gbc**:
|
2013-08-12 12:36:27 -04:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|
2013-08-12 12:36:27 -04:00
|
|
|
|
2014-03-08 10:46:13 -05:00
|
|
|
|
2015-02-06 13:41:57 -08:00
|
|
|
# Windows
|
2014-03-08 10:46:13 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
To build on Windows, use [**Cygwin**](http://cygwin.com/install.html). Use the default settings.
|
2012-06-02 15:27:24 -05:00
|
|
|
|
2016-02-17 16:44:27 -05:00
|
|
|
In the installer, select the following packages: `make` `git` `python` `gettext`
|
2016-01-31 18:27:32 -05:00
|
|
|
|
2015-02-06 13:41:57 -08:00
|
|
|
Then get the most recent version of [**rgbds**](https://github.com/bentley/rgbds/releases/).
|
2015-10-22 01:15:07 -04:00
|
|
|
Extract the archive and put `rgbasm.exe`, `rgblink.exe` and `rgbfix.exe` in `C:\cygwin\usr\local\bin`.
|
2012-06-02 15:27:24 -05:00
|
|
|
|
2015-02-06 13:41:57 -08:00
|
|
|
In the **Cygwin terminal**:
|
2012-06-02 15:27:24 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
2014-03-08 10:46:13 -05:00
|
|
|
|
2015-10-25 03:23:33 -04:00
|
|
|
git clone --recursive https://github.com/pret/pokecrystal
|
2015-10-22 01:15:07 -04:00
|
|
|
cd pokecrystal
|
|
|
|
```
|
2013-08-03 13:57:10 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
To build **pokecrystal.gbc**:
|
2014-03-08 10:46:13 -05:00
|
|
|
|
2015-10-22 01:15:07 -04:00
|
|
|
```bash
|
|
|
|
make
|
|
|
|
```
|
2016-02-17 16:44:27 -05:00
|
|
|
|
|
|
|
## notes
|
|
|
|
|
|
|
|
- If `gettext` no longer exists, grab `libsasl2-3` `ca-certificates`.
|