diff options
author | Hop311 <Hop3114@gmail.com> | 2024-10-20 20:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-20 20:36:47 +0200 |
commit | 4c6e41074381ad5b61d64a796c242806cc61a18c (patch) | |
tree | 08ba49d0f0b9c68a65e3c850d73fcaad8e25099b | |
parent | 9df338b70ed78cd7c8d786bc34706ba2f112473b (diff) | |
parent | a6419f3ebcdf0ef0357c5f48f0fa12a663374b7f (diff) |
Merge pull request #279 from gamedev-donathan/update-ubuntu-system-requirements
Updated System Requirements For Ubuntu 22.04
-rw-r--r-- | docs/contribution/system-requirements.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/contribution/system-requirements.md b/docs/contribution/system-requirements.md index 9fd7719..9e1f16b 100644 --- a/docs/contribution/system-requirements.md +++ b/docs/contribution/system-requirements.md @@ -27,6 +27,7 @@ If you're installing Visual Studio 2015, ensure you choose custom and pick C++ a ### Linux Requirements * GCC 12.3+ + * For Ubuntu 22.04, you need to manually install g++-12 and set that version as active #### Debian/Ubuntu Linux Install ```sh @@ -43,7 +44,11 @@ apt-get install \ libpulse-dev \ libudev-dev \ libxi-dev \ - libxrandr-dev + libxrandr-dev \ + g++-12 + +update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 +update-alternatives --set g++ /usr/bin/g++-12 ``` #### Arch Linux Requirements |