blob: 7f69a8948a65da253db7878786047f2f8a2434de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Linux
Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM) or compile [**GNU Binutils**](https://www.gnu.org/software/binutils/) with target "arm-none-eabi".
Either way, make sure that there is an environment variable called DEVKITARM with the path of the directory before the "bin" directory containing "arm-none-eabi-as", "arm-none-eabi-ld" and "arm-none-eabi-objcopy".
For example, if you install binutils at "/usr/local", make DEVKITARM equal "/usr/local".
Then get the compiler from https://github.com/YamaArashi/agbcc and run the following commands.
build.sh
install.sh PATH_OF_POKERUBY_DIRECTORY
Then in the pokeruby directory, build the tools.
build_tools.sh
Finally, build the rom.
make
# Windows
Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM).
Then get the compiled tools from https://github.com/YamaArashi/pokeruby-tools. Copy the "tools" folder over the "tools" folder in your pokeruby directory.
You can then build pokeruby using "make" in the MSYS environment provided with devkitARM.
|