Package Details: rpcs3-git 0.0.33.r16916.53c84577c0-1

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: 78
Popularity: 0.44
First Submitted: 2014-08-14 11:04 (UTC)
Last Updated: 2024-09-08 18:27 (UTC)

Latest Comments

« First ‹ Previous 1 .. 22 23 24 25 26 27 28 29 30 31 32 .. 35 Next › Last »

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

C0rn3j commented on 2017-07-14 07:03 (UTC)

RPCS3 v0.0.2-5456-25fcde950 Alpha F LDR: St11range_error thrown: Narrow error (0x55fcdadf4b00) S LDR: Boot Game: boot done. Can't launch any game either. Though when trying to launch when compiling from their git repo directly, I get a similar error. RPCS3 v0.0.2-5456-25fcde95 Alpha F LDR: St11range_error thrown: Narrow error (0x562e50829940) S LDR: Boot from gamelist per Boot: done

tempomolto commented on 2017-07-11 07:02 (UTC)

on latest package, I can't launch any game by double clicking (or menu boot) RPCS3 v0.0.2-5408-2e47c4236 Alpha F LDR: St11range_error thrown: Narrow error (0x55c58b7fa430) S LDR: Boot from gamelist per doubleclick: done If I compile with this, I can launch the games. It used to work correctly. #!/bin/bash rm -rf rpcs3 git clone https://github.com/RPCS3/rpcs3.git cd rpcs3/ #test with clang export CC=/usr/bin/clang export CXX=/usr/bin/clang++ git submodule update --init cmake CMakeLists.txt && make GitVersion && make