Package Details: rpcs3-git 0.0.36.r17723.2f8ed1a6bd-2

Git Clone URL: https://aur.archlinux.org/rpcs3-git.git (read-only, click to copy)
Package Base: rpcs3-git
Description: A Sony PlayStation 3 emulator
Upstream URL: https://github.com/RPCS3/rpcs3
Licenses: GPL-2.0-only
Conflicts: rpcs3
Provides: rpcs3
Submitter: alucryd
Maintainer: hcorion
Last Packager: hcorion
Votes: 79
Popularity: 0.56
First Submitted: 2014-08-14 11:04 (UTC)
Last Updated: 2025-03-31 01:11 (UTC)

Latest Comments

« First ‹ Previous 1 .. 24 25 26 27 28 29 30 31 32 33 34 .. 37 Next › Last »

prg commented on 2017-09-27 19:49 (UTC)

Vulkan-LoaderAndValidationLayers.tar.gz failing md5 validation

hcorion commented on 2017-09-17 05:10 (UTC)

This will no longer build with LLVM, an important feature of RPCS3, because of Arch Linux's upgrade to llvm 5. RPCS3 has a PR for LLVM 5 support but it breaks a bunch of games (including Persona 5). Options for this package: 1. Create an AUR package for llvm 4 and require that. 2. Build using the LLVM submodule. 3. Don't do anything, rpcs3 users on arch will have to do without llvm for now. 4. Use the unstable LLVM 5 PR and add it as patch. (ranked from IMO best to worst)

Sanpi commented on 2017-08-19 16:08 (UTC)

@hcorion ok, now the package use the source archives.

hcorion commented on 2017-08-18 18:56 (UTC)

Okay, but this package still doesn't build from source. You can basically copy-paste alucryd's rpcs3-git package (even better, add him as a co-maintainer). All you'd need to change would be git+https://github.com/RPCS3/rpcs3.git in sources to https://github.com/RPCS3/rpcs3/archive/v0.0.3.tar.gz and add a sha256/sha512sum for it.

Sanpi commented on 2017-08-17 07:51 (UTC)

@hcorion done, thank you. https://aur.archlinux.org/packages/rpcs3-bin/

hcorion commented on 2017-08-16 22:43 (UTC)

This package name should be changed to rpcs3-bin, because it uses the binary, another package should be created called rpcs3 that builds it from the source.

hcorion commented on 2017-07-25 19:18 (UTC)

@alucryd llvm-libs are now only a build-dep and aren't needed at runtime.

hcorion commented on 2017-07-16 17:09 (UTC)

@alucryd The no-pie flags have been upstreamed via https://github.com/RPCS3/rpcs3/commit/6597eb27c74469ef67ef03b041178f1f4358f6f4

alucryd commented on 2017-07-15 18:13 (UTC)

Added -no-pie to the linker flags, -nopie seems to be for very old GCC (4.x).

tempomolto commented on 2017-07-15 08:24 (UTC)

The pb is discussed here: https://github.com/RPCS3/rpcs3/issues/2516#issuecomment-315405512 With latest clang and my script, I have to do this to be able to launch a game: " This is because Arch now enables PIE and SSP by default, you can fix this by changing line 104 in rpcs3/CmakeLists.txt from set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -image-base=0x10000") to set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -image-base=0x10000 -nopie") " This works fine