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 .. 14 15 16 17 18 19 20 21 22 23 24 .. 35 Next › Last »

Sanpi commented on 2018-11-09 22:19 (UTC)

@moll patch added, thank you!

moll commented on 2018-10-30 16:20 (UTC)

I got it to compile with the following changes:

+++ a/rpcs3-0.0.5/rpcs3/rpcs3qt/settings_dialog.cpp 2018-02-24 15:06:08.000000000 +0000
--- b/rpcs3-0.0.5/rpcs3/rpcs3qt/settings_dialog.cpp 2018-10-30 16:13:26.590864589 +0000
@@ -12,7 +12,6 @@
 #include <QApplication>
 #include <QDesktopWidget>
 #include <QTimer>
+#include <QButtonGroup>

 #include "settings_dialog.h"
+++ a/rpcs3-0.0.5/rpcs3/Emu/Cell/Modules/cellAdec.cpp   2018-02-24 15:06:08.000000000 +0000
--- b/rpcs3-0.0.5/rpcs3/Emu/Cell/Modules/cellAdec.cpp   2018-10-30 16:09:33.213314225 +0000
@@ -229,8 +229,8 @@

                        if (size)
                        {
-                           data = (u8*)av_calloc(1, size + FF_INPUT_BUFFER_PADDING_SIZE);
-                           this->size = size + FF_INPUT_BUFFER_PADDING_SIZE;
+                           data = (u8*)av_calloc(1, size + AV_INPUT_BUFFER_PADDING_SIZE);
+                           this->size = size + AV_INPUT_BUFFER_PADDING_SIZE;
                        }
                        else
                        {

Apply that to the src directory and then makepkg --noextract.

EnSER commented on 2018-10-03 10:04 (UTC)

I'm also getting a compiler error at "FF_INPUT_BUFFER_PADDING_SIZE". Any chance that this gets fixed?

alucryd commented on 2018-09-16 16:49 (UTC)

Well that's not nearly enough to help you since you cut the relevant part. The AUR is not a pastebin anyway, please use external services to paste your logs. BTW it builds fine in a clean chroot so the issue is most likely on your end.

mem.moraes commented on 2018-09-16 13:48 (UTC)

Hi, I'm getting this error:

make[2]: [rpcs3/CMakeFiles/rpcs3.dir/build.make:1051: rpcs3/CMakeFiles/rpcs3.dir/Emu/Cell/Modules/cellAdec.cpp.o] Error 1 make[1]: [CMakeFiles/Makefile2:189: rpcs3/CMakeFiles/rpcs3.dir/all] Error 2 make: *** [Makefile:152: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... ==> ERROR: Makepkg was unable to build rpcs3.

alucryd commented on 2018-09-01 07:47 (UTC)

Indeed, that submodule was removed a few days ago, thanks for the heads up.

<deleted-account> commented on 2018-08-31 18:46 (UTC)

Hi,

Stripped 3rdParty Optional lines from PKGBUILD and successfully compiled.

alucryd commented on 2018-08-29 16:28 (UTC)

It's been doing that for a few commits now, looks like an upstream issue. Haven't had time to report it upstream though.

<deleted-account> commented on 2018-08-29 08:55 (UTC)

Hi there,

Compile hangs at %96

/rpcs3-git/src/rpcs3/rpcs3/Emu/RSX/VK/VKHelpers.h: In member function ‘vk::swapchain_base* vk::context::createSwapChain(display_handle_t, vk::physical_device&)’: /rpcs3-git/src/rpcs3/rpcs3/Emu/RSX/VK/VKHelpers.h:2170:18: error: ‘using display_handle_t = class std::variant<std::pair<_XDisplay*, long unsigned int>, std::pair<wl_display*, wl_surface*> >’ {aka ‘class std::variant<std::pair<_XDisplay*, long unsigned int>, std::pair<wl_display*, wl_surface*> >’} has no member named ‘match’ window_handle.match( ^~~~~ make[2]: [rpcs3/CMakeFiles/rpcs3.dir/build.make:4005: rpcs3/CMakeFiles/rpcs3.dir/rpcs3qt/emu_settings.cpp.o] Error 1 make[2]: [rpcs3/CMakeFiles/rpcs3.dir/build.make:3865: rpcs3/CMakeFiles/rpcs3.dir/rpcs3_app.cpp.o] Error 1 make[1]: [CMakeFiles/Makefile2:1436: rpcs3/CMakeFiles/rpcs3.dir/all] Error 2 make: [Makefile:152: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... :: failed to build rpcs3-git package(s)

hak8or commented on 2018-07-30 01:33 (UTC)

I am also confirming the compilation bug still exists, and it seems to be the same one:

/home/hak8or/.cache/yay/rpcs3/src/rpcs3-0.0.5/rpcs3/Emu/Cell/Modules/cellAdec.cpp: In constructor ‘AudioDecoder::cpu_task()::AVPacketHolder::AVPacketHolder(u32)’:
/home/hak8or/.cache/yay/rpcs3/src/rpcs3-0.0.5/rpcs3/Emu/Cell/Modules/cellAdec.cpp:232:40: error: ‘FF_INPUT_BUFFER_PADDING_SIZE’ was not declared in this scope
        data = (u8*)av_calloc(1, size + FF_INPUT_BUFFER_PADDING_SIZE);
                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/hak8or/.cache/yay/rpcs3/src/rpcs3-0.0.5/rpcs3/Emu/Cell/Modules/cellAdec.cpp:232:40: note: suggested alternative: ‘AV_INPUT_BUFFER_PADDING_SIZE’
        data = (u8*)av_calloc(1, size + FF_INPUT_BUFFER_PADDING_SIZE);
                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                        AV_INPUT_BUFFER_PADDING_SIZE