Skip to content

Commit

Permalink
Update INSTALL.md with correct msys2 binutils package (#132)
Browse files Browse the repository at this point in the history
* Update INSTALL.md with correct msys2 binutils package

* Use MINGW_PACKAGE_PREFIX + update path
  • Loading branch information
lhearachel authored Jan 28, 2024
1 parent 0cc483b commit 8f791de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ You now have the choice between two different environments to use to build the p
Press 'Y' when prompted to confirm the update. The update process may take a few minutes. Once completed, the terminal will automatically close.
3. Reopen an MSYS terminal (pink icon) and enter the following command to install the necessary packages:
3. Reopen an MSYS terminal (pink icon) and enter the following commands to install the necessary packages:
```
pacman -S git meson gcc arm-none-eabi-binutils
echo 'export MINGW_PACKAGE_PREFIX=mingw-w64-x86_64-' >> ~/.bashrc
echo 'export PATH=${PATH}:/mingw64/bin' >> ~/.bashrc
source ~/.bashrc
pacman -S git meson gcc "${MINGW_PACKAGE_PREFIX}arm-none-eabi-binutils"
```
Press 'Y' when prompted to confirm the installation.
Expand Down

0 comments on commit 8f791de

Please sign in to comment.