Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dump + rebuild the contents of battle scripting NARCs #123

Merged
merged 7 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/$(lsb_release -cs)/winehq-$(lsb_release -cs).sources
sudo dpkg --add-architecture i386
sudo apt-get update -y
sudo apt-get install -y --install-recommends python3-pip ninja-build winehq-stable
sudo apt-get install -y --install-recommends python3-pip ninja-build winehq-stable binutils-arm-none-eabi
pip install --user meson pyelftools

- name: Checkout Repo
Expand Down
7 changes: 4 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You now have the choice between two different environments to use to build the p
3. Reopen an MSYS terminal (pink icon) and enter the following command to install the necessary packages:

```
pacman -S git meson gcc
pacman -S git meson gcc arm-none-eabi-binutils
```

Press 'Y' when prompted to confirm the installation.
Expand Down Expand Up @@ -74,7 +74,7 @@ You now have the choice between two different environments to use to build the p
7. Certain packages are required to build the repository. Install these packages by running the following command:

```bash
sudo apt install git build-essential
sudo apt install git build-essential binutils-arm-none-eabi
```

We are not done yet, the 'meson' package is also necessary, but the version provided by apt is too outdated. To get the most recent meson version, run:
Expand Down Expand Up @@ -108,7 +108,7 @@ These can be installed using Homebrew; if you do not have Homebrew installed, re

```
brew update
brew install meson
brew install meson arm-none-eabi-binutils
brew install --cask wine-stable
```

Expand All @@ -119,6 +119,7 @@ Building the ROM requires the following packages. If you cannot find one or more
* git
* meson (>= 1.2.0)
* build-essentials (build-essential on Ubuntu)
* binutils-arm-none-eabi (arm-none-eabi-binutils on Arch Linux)
* wine (to run the mwcc executables)
* pkg-config

Expand Down
Loading
Loading