summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2018-04-28 21:05:14 -0400
committeryenatch <yenatch@gmail.com>2018-04-28 21:07:53 -0400
commitd940925645f26cc81aabb2bc0bcafe26691b7601 (patch)
tree3ff97c91a6a3d23441f960fea30274dce90eb186
parentaa111f33373e0481df975e6e8298dbec9ececc3f (diff)
say clearly what $DEVKITARM should be
-rw-r--r--INSTALL.md25
1 files changed, 21 insertions, 4 deletions
diff --git a/INSTALL.md b/INSTALL.md
index d8f60f3e1..dc35350f0 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -2,10 +2,11 @@
Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM).
-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".
-
Then run the following commands.
+ export DEVKITARM=/opt/devkitPro/devkitARM
+ echo "export DEVKITARM=/opt/devkitPro/devkitARM" >> ~/.bashrc
+
git clone https://github.com/pret/pokeruby
git clone https://github.com/pret/agbcc
@@ -22,11 +23,27 @@ To build **pokeruby.gba**:
# Mac
-In **Terminal**, run the following command:
+Install [**devkitARM**](http://devkitpro.org/wiki/Getting_Started/devkitARM).
+
+Then in **Terminal**, run the following commands.
xcode-select --install
-Then follow the Linux instructions.
+ export DEVKITARM=${HOME}/devkitPro/devkitARM
+ echo "export DEVKITARM=${HOME}/devkitPro/devkitARM" >> ~/.bashrc
+
+ git clone https://github.com/pret/pokeruby
+ git clone https://github.com/pret/agbcc
+
+ cd agbcc
+ ./build.sh
+ ./install.sh ../pokeruby
+
+ cd ../pokeruby
+
+To build **pokeruby.gba**:
+
+ make -j4
# Windows