README 964 B

123456789101112131415161718192021222324
  1. PCSX2 is an open source Playstation 2 emulator. Its purpose is to mimic
  2. the PS2 hardware, using a combination of MIPS CPU Interpreters, Recompilers
  3. and a Virtual Machine which manages hardware states and PS2 system memory.
  4. NOTE: This is buildable only on x86 32bit platforms and will require a PS2 bios
  5. dump to play games. For x86_64 64bit platforms multilib support will be needed
  6. including compat32 versions of SDL2, wxGTK3, portaudio and soundtouch.
  7. PCSX2 offers experimental support for the EGL api instead of GLX. This can be
  8. used by building PCSX2 with:
  9. EGL_API=yes ./pcsx2.SlackBuild
  10. To build debugging symbols for PCSX2 use:
  11. DEBUG=yes ./pcsx2.SlackBuild
  12. Alternatively a devel build can be used:
  13. DEVEL=yes ./pcsx2.SlackBuild
  14. If a debug or devel build is used, asan support can also be built:
  15. ASAN=yes ./pcsx2.SlackBuild
  16. The following environment variable will be required to use asan:
  17. ASAN_OPTIONS=allow_user_segv_handler=1:abort_on_error=1