mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
Add a note on core.filemode error.
This commit is contained in:
parent
8ad9730901
commit
3b1cbc5861
14
INSTALL.md
14
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)).
|
If this works, then proceed to [Installation](#Installation). Otherwise, ask for help on IRC or Discord (see [README.md](README.md)).
|
||||||
|
|
||||||
## Installation
|
## 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:
|
If pokeemerald is not already downloaded (some users may prefer to download pokeemerald via a git client like GitHub Desktop), run:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/luckytyphlosion/pokeemerald
|
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:
|
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
|
git clone https://github.com/luckytyphlosion/agbcc
|
||||||
@ -294,8 +306,6 @@ To build **pokeemerald.gba** with your changes:
|
|||||||
make
|
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
|
# Building guidance
|
||||||
|
|
||||||
## Parallel builds
|
## Parallel builds
|
||||||
|
Loading…
Reference in New Issue
Block a user