You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Vulkan SDK 1.3.268.0](https://vulkan.lunarg.com/sdk/home) (See "Install the SDK" [here](https://vulkan.lunarg.com/doc/sdk/latest/linux/getting_started.html)) for now future SDKs don't work. You need precisely 1.3.268.0.
@@ -42,16 +42,16 @@ Ubuntu is usually horrendously out of date, and some packages need to be downloa
42
42
43
43
Ubuntu usually does not have a new enough Qt package to suit rpcs3's needs. There is currently no PPA available to work around this.
44
44
45
-
##### GCC 11.x installation
45
+
##### GCC 13.x installation
46
46
47
-
If the `gcc-11` package is not available on your system, use the following commands
47
+
If the `gcc-13` package is not available on your system, use the following commands
You can either use `update-alternatives` to setup `gcc-11`/`g++-11` as your default compilers or prefix any `cmake` command by `CXX=g++-11 CC=gcc-11` to use it.
54
+
You can either use `update-alternatives` to setup `gcc-13`/`g++-13` as your default compilers or prefix any `cmake` command by `CXX=g++-13 CC=gcc-13` to use it.
55
55
56
56
##### Vulkan SDK
57
57
@@ -122,7 +122,7 @@ Afterwards:
122
122
While still in the project root:
123
123
124
124
1)`cd .. && mkdir --parents rpcs3_build && cd rpcs3_build`
125
-
2)`cmake ../rpcs3/ && make` or `CXX=g++-11 CC=gcc-11 cmake ../rpcs3/ && make` to force these compilers
125
+
2)`cmake ../rpcs3/ && make` or `CXX=g++-13 CC=gcc-13 cmake ../rpcs3/ && make` to force these compilers
126
126
3) Run RPCS3 with `./bin/rpcs3`
127
127
128
128
When using GDB, configure it to ignore SIGSEGV signal (`handle SIGSEGV nostop noprint`).
0 commit comments