Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 1.46 KB

INSTALL.md

File metadata and controls

73 lines (48 loc) · 1.46 KB

The source files are assembled into a ROM using rgbds. These instructions explain how to set up the tools required to build.

If you run into trouble, ask for help on Pia's Discord server.

Windows

To build on Windows, install Cygwin with the default settings.

In the installer, select the following packages: make, gcc-core, python3, git, gettext. If gettext no longer exists, get libsasl2-3 and ca-certificates.

In the Cygwin terminal:

git clone https://github.com/PiaCarrot/pokeorange.git
cd pokeorange

Then get rgbds 0.5.2. Extract the archive and put rgbasm.exe, rgblink.exe, rgbfix.exe and rgbgfx.exe in C:\Cygwin\usr\local\bin or in pokeorange\rgbds.

To build pokeorange.gbc:

make

Linux

sudo apt-get install make gcc python git bison

git clone https://github.com/rednex/rgbds.git
cd rgbds
git checkout v0.2.5
sudo make install
cd ..

git clone https://github.com/PiaCarrot/pokeorange.git
cd pokeorange

To build pokeorange.gbc:

make

Mac OS X

In Terminal, run:

xcode-select --install

git clone https://github.com/rednex/rgbds.git
cd rgbds
git checkout v0.2.5
sudo make install
cd ..

git clone https://github.com/PiaCarrot/pokeorange.git
cd pokeorange

To build pokeorange.gbc:

make