summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2020-12-16 18:56:03 -0500
committerGitHub <noreply@github.com>2020-12-16 18:56:03 -0500
commit3b1cbc58617fe45efbbbdd967ab1e0fae85d76a4 (patch)
tree68d74d219c65d88425d2bfe847dbd5acd87e283e
parent8ad973090199d4350683f64069ed1cb676e23679 (diff)
Add a note on core.filemode error.
-rw-r--r--INSTALL.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 82d0f228d..ee18ce216 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -250,10 +250,22 @@ At this point, you can choose a folder to store pokeemerald (and agbcc) into. If
If this works, then proceed to [Installation](#Installation). Otherwise, ask for help on IRC or Discord (see [README.md](README.md)).
## Installation
+
+**Windows users:** Consider adding an exception for the `pokeemerald`/`decomps` folder in Windows Security using [these instructions](https://support.microsoft.com/help/4028485). This prevents Microsoft Defender from scanning them which might improve performance while building.
+
If pokeemerald is not already downloaded (some users may prefer to download pokeemerald via a git client like GitHub Desktop), run:
```bash
git clone https://github.com/luckytyphlosion/pokeemerald
```
+Note for WSL1: If you get an error stating `fatal: could not set 'core.filemode' to 'false'`, then run the following commands:
+```bash
+cd
+sudo umount /mnt/c
+sudo mount -t drvfs C: /mnt/c -o metadata
+cd <folder where pokeemerald is to be stored>
+```
+Where *\<folder where pokeemerald is to be stored>* is the path of the folder [where you chose to store pokeemerald](#Choosing-where-to-store-pokeemerald-WSL1).
+
If agbcc has not been built before, run the following commands to build and install it into pokeemerald:
```
git clone https://github.com/luckytyphlosion/agbcc
@@ -294,8 +306,6 @@ To build **pokeemerald.gba** with your changes:
make
```
-**Windows users:** Consider adding an exception for the `pokeemerald` folder in Windows Security using [these instructions](https://support.microsoft.com/help/4028485). This prevents Microsoft Defender from scanning them which might improve performance while building.
-
# Building guidance
## Parallel builds