pokeruby/INSTALL.md

27 lines
893 B
Markdown
Raw Normal View History

2016-04-30 05:38:02 -07:00
# Linux
2016-05-10 21:39:46 -07:00
Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM).
2016-04-30 05:38:02 -07:00
2016-05-10 21:39:46 -07:00
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-cpp", "arm-none-eabi-ld" and "arm-none-eabi-objcopy".
2016-04-30 05:38:02 -07:00
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.
2016-04-30 05:57:45 -07:00
build_tools.sh
2016-04-30 05:38:02 -07:00
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.