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

Latest Comments

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

alucryd commented on 2017-05-08 12:26 (UTC)

You're supposed to use an external pastebin service for that. Just updated the PKGBUILD, also you can find nightly builds one of my unofficial repos: https://pkgbuild.com/~alucryd/.

deathrashergr commented on 2017-05-06 21:17 (UTC)

I am not sure about the rules of the AUR and posting code on comments but for anyone in a hurry (like myself) I managed to build the rpcs3-git package successfully by adding the hidapi dependency to the PKGBUILD. The new PKGBUILD contents: # Maintainer: Maxime Gauduin <alucryd@archlinux.org> pkgname=rpcs3-git pkgver=0.0.2.r194.b9ebf595e pkgrel=1 pkgdesc='A Sony PlayStation 3 emulator' arch=('x86_64') url='https://github.com/RPCS3/rpcs3' license=('GPL2') depends=('gcc-libs' 'glew' 'glibc' 'glu' 'libgl' 'libpng' 'libx11' 'openal' 'wxgtk' 'yaml-cpp' 'zlib' 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'libncursesw.so' 'libswscale.so' 'libswresample.so') makedepends=('boost' 'cereal' 'cmake' 'git' 'llvm') provides=('rpcs3') conflicts=('rpcs3') source=('git+https://github.com/RPCS3/rpcs3.git' 'git+https://github.com/RPCS3/common.git' 'git+https://github.com/RPCS3/pugixml.git#commit=f205aaf' 'git+https://github.com/RPCS3/rsx-debugger.git#commit=3b11b96' 'git+https://github.com/RPCS3/rsx_program_decompiler.git#commit=de3b205' 'git+https://github.com/kobalicek/asmjit.git#commit=b0dad1a' 'git+https://github.com/Microsoft/GSL.git#commit=fc5fce4' 'git+https://github.com/KhronosGroup/glslang.git#commit=2921e0c' 'git+https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers.git#commit=64d375f' 'git+https://github.com/signal11/hidapi.git') sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP') pkgver() { cd rpcs3 echo "$(git describe --tags | sed 's/^v//; s/-/.r/; s/-g/./')" } prepare() { cd rsx_program_decompiler git submodule init common git config submodule.common.url ../common git submodule update common cd ../rpcs3 git submodule init 3rdparty/{GSL,pugixml,hidapi} asmjit rsx{-debugger,_program_decompiler} Vulkan/{glslang,Vulkan-LoaderAndValidationLayers} git config submodule.asmjit.url ../asmjit git config submodule.GSL.url ../GSL git config submodule.pugixml.url ../pugixml git config submodule.rsx-debugger.url ../rsx-debugger git config submodule.rsx_program_decompiler.url ../rsx_program_decompiler git config submodule.glslang.url ../glslang git config submodule.Vulkan-LoaderAndValidationLayers ../Vulkan-LoaderAndValidationLayers git config submodule.hidapi ../hidapi git submodule update 3rdparty/{GSL,pugixml,hidapi} asmjit rsx_program_decompiler Vulkan/{glslang,Vulkan-LoaderAndValidationLayers} if [[ -d build ]]; then rm -rf build fi mkdir build } build() { cd rpcs3/build cmake .. \ -DCMAKE_BUILD_TYPE='Release' \ -DCMAKE_INSTALL_PREFIX='/usr' \ -DCMAKE_EXE_LINKER_FLAGS='-ldl -lyaml-cpp' \ -DCMAKE_SKIP_RPATH='ON' \ -DUSE_SYSTEM_FFMPEG='ON' \ -DUSE_SYSTEM_LIBPNG='ON' make } package() { cd rpcs3/build install -dm 755 "${pkgdir}"/usr/bin install -m 755 bin/rpcs3 "${pkgdir}"/usr/bin/ } # vim: ts=2 sw=2 et:

hcorion commented on 2017-05-04 21:21 (UTC) (edited on 2017-05-04 21:21 (UTC) by hcorion)

This needs an update, RPCS3 now has a submodule in 3rdparty/hidapi, see bug here: https://github.com/RPCS3/rpcs3/issues/2751

MrTimscampi commented on 2017-04-30 15:08 (UTC)

@atamax: It's a known bug upstream. The LLVM currently works only on the NVidia proprietary driver.

atamax commented on 2017-04-25 14:17 (UTC) (edited on 2017-04-25 14:51 (UTC) by atamax)

After compiling rev 5152 on a new clean arch install i get this while trying to run a game: : CommandLine Error: Option 'help-list' registered more than once! LLVM ERROR: inconsistency in registered CommandLine options Edit: Runs fine with Null video renderer but when I try to use opengl with or without "MESA_GL_VERSION_OVERRIDE=4.5" i get the above error. I am using radeonsi.

tempomolto commented on 2017-04-21 15:12 (UTC)

With radeonsi, as of rev 5150, it's necessary to launch with MESA_GL_VERSION_OVERRIDE=4.5 rpcs3

hcorion commented on 2017-04-03 18:43 (UTC)

@alycryd Nevermind, issue was fixed, and now builds and runs properly with system ffmpeg as well.

hcorion commented on 2017-04-01 19:07 (UTC)

@alucryd The PKGBUILD needs changing. A recent commit makes it no longer run. It no longer builds with the system's ffmpeg, it needs the custom ffmpeg. You can see the bug report here: https://github.com/RPCS3/rpcs3/issues/2616 So you need to add the custom FFMPEG as a source and remove the -DUSE_SYSTEM_FFMPEG='ON' cmake flag.

hcorion commented on 2017-03-31 20:51 (UTC) (edited on 2017-03-31 20:51 (UTC) by hcorion)

@mac1202 Vulkan is not yet enabled on Linux, OpenGL is more stable anyways. You can track this issue for Vulkan support on Linux: https://github.com/RPCS3/rpcs3/issues/2255

mac1202 commented on 2017-03-23 16:35 (UTC)

Did someone successfully build this with vulkan renderer. I can build dolphin or retroarch with vulkan support but with rpcs3 I only got opengl renderer.