Skip to content

Commit

Permalink
Bump g++ version
Browse files Browse the repository at this point in the history
  • Loading branch information
malleoz committed Mar 24, 2024
1 parent bb4bf31 commit 9c1d66c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
python-version: "3.10"
- name: Configure G++ version
run: |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10
sudo update-alternatives --set gcc "/usr/bin/gcc-12"
sudo update-alternatives --set g++ "/usr/bin/g++-12"
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 10
sudo update-alternatives --set gcc "/usr/bin/gcc-13"
sudo update-alternatives --set g++ "/usr/bin/g++-13"
- name: Configure ninja
run: ./configure.py
- name: Compile
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Kinoko is a reimplementation of Mario Kart Wii's physics engine in C++. This pro

### Dependencies

- g++ 12 (C++23)
- g++ 13.1 (C++23)
- ninja
- Python 3

Expand Down

0 comments on commit 9c1d66c

Please sign in to comment.