Guest User

Untitled

a guest
Nov 12th, 2022
1,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. 1. Download and install .NET 7 SDK (https://dotnet.microsoft.com/download/dotnet/7.0)
  2. 2. Download and install Git CLI (https://git-scm.com/downloads)
  3. 3. Create a Github account (https://github.com/)
  4. 4. Prob restart your PC just in case, or don't
  5. 5. Open CMD
  6. 6. Execute the following commands, IN ORDER:
  7.  
  8. > git clone https://github.com/Ryujinx/Ryujinx.git Ryujinx
  9. (it should probably ask you to login on Github at this point)
  10. > git clone https://github.com/riperiperi/Ryujinx.git PR3830
  11. > git clone https://github.com/gdkchan/Ryujinx.git PR3748
  12. > cd PR3830
  13. > git checkout perf/multi-region-volatile
  14. > cd ../PR3748
  15. > git checkout dei-hle
  16. > cd ../Ryujinx
  17. > git remote add PR3830 ../PR3830
  18. > git remote add PR3748 ../PR3748
  19. > git remote update
  20. > git switch -c custom-build
  21. > git merge --allow-unrelated-histories PR3830/perf/multi-region-volatile
  22. > git merge --allow-unrelated-histories PR3748/dei-hle
  23. > dotnet build -c Release -o build
  24. > explorer build
  25.  
  26. If everything works out correctly, you should now be in your custom Ryujinx folder. Run Ryujinx.exe. Profit.
Advertisement
Add Comment
Please, Sign In to add comment