Advertisement
Lunos

How to quickly set up Pokeruby

Feb 6th, 2018
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. This guide was wrote by Lunos the 06 of February from 2018.
  2.  
  3. Useful Links:
  4. Cygwin's installer: https://cygwin.com/setup-x86_64.exe
  5. devkitPro: https://sourceforge.net/projects/devkitpro/files/latest/download
  6.  
  7. Instructions:
  8. 1) Download Cygwin's installer.
  9. 2) Run it, next, next, next until you get to the packages selection screen.
  10. 3) Where it says "View", select "Full". Then find the packages "git" and "make" using the search bar.
  11. 4) Download and install devkitPro.
  12. 5) Go to C:\cygwin64\home\\(USER) and open the file ".bashrc" with a text editor.
  13. 6) Add these 2 lines at the end of the file:
  14. export DEVKITPRO=/cygdrive/c/devkitPro
  15. export DEVKITARM=$DEVKITPRO/devkitARM
  16. 7) Go to C:\cygwin64\bin and run mintty.exe
  17. 8) Execute cd and press enter.
  18. 9) git clone http://www.github.com/pret/pokeruby --recursive
  19. 10) Once it's done, execute: git clone http://www.github.com/pret/pokeruby-tools --recursive
  20. 11) Once it's done, close Mintty and go to C:\cygwin64\home\\(USER)\pokeruby-tools and grab the "tools" folder.
  21. 12) Paste it in C:\cygwin64\home\\(USER)\Pokeruby
  22. 13) Go to C:\cygwin64\bin, run mintty.exe and execute: cd
  23. 14) Then execute cd pokeruby
  24. 15) Then execute make
  25. 16) Wait.
  26.  
  27. Protip: Instead of make alone, you can also use "make -jN".
  28. "N" would be the number of cores from your CPU that you want to dedicate to the building task in order to speed things up.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement