Package Details: mupen64plus-rsp-parallel-git 1:r90.4cf680b-2

Git Clone URL: https://aur.archlinux.org/mupen64plus-rsp-parallel-git.git (read-only, click to copy)
Package Base: mupen64plus-rsp-parallel-git
Description: Parallel RSP is a fast RSP LLE plugin for mupen64plus
Upstream URL: https://github.com/Mastergatto/parallel-rsp
Licenses: MIT, LGPL3
Conflicts: mupen64plus-rsp-parallel
Provides: mupen64plus-rsp-parallel
Submitter: Snowstorm64
Maintainer: Snowstorm64
Last Packager: Snowstorm64
Votes: 0
Popularity: 0.000000
First Submitted: 2021-06-09 21:37 (UTC)
Last Updated: 2023-01-03 20:46 (UTC)

Dependencies (2)

Required by (1)

Sources (2)

Latest Comments

Snowstorm64 commented on 2023-01-03 20:50 (UTC)

I have added a fallback to v2 if your CPU doesn't support x86-64-v3 level. Can you try to build this plugin again and tell me if it is working for you?

noabody commented on 2022-12-30 01:42 (UTC) (edited on 2022-12-30 01:45 (UTC) by noabody)

Needs patch for processor independence, x86-64 architecture, or message to notify user that CPU must support AVX2. See issue less aggressive -march=x86-64-v2 and simple64-git.

Can be accomplished with sed/perl, perl examples follow.

To force x86-64:

  perl -pi -e 's|-v3||gi' parallel-rsp/CMakeLists.txt

To force x86-64-v2:

  perl -pi -e 's|-v3|-v2|gi' parallel-rsp/CMakeLists.txt

Snowstorm64 commented on 2022-06-19 21:24 (UTC)

Thank you, this was because the repo was changed and now the relevant commits aren't in the main branch anymore, now they're found in the 'm64p' branch.

PKGBUILD is now fixed.

mmanjos commented on 2022-06-19 18:02 (UTC)

I'm having trouble building this with the latest upstream git:

==> Extracting sources...
  -> Creating working copy of parallel-rsp git repo...
Cloning into 'parallel-rsp'...
done.
==> Starting prepare()...
patching file parallel-rsp/CMakeLists.txt
Hunk #1 FAILED at 6.
1 out of 1 hunk FAILED -- saving rejects to file parallel-rsp/CMakeLists.txt.rej
==> ERROR: A failure occurred in prepare().
    Aborting...
 -> error making: mupen64plus-rsp-parallel-git

parallel-rsp/CMakeLists.txt contains:

--- parallel-rsp/CMakeLists.txt
+++ parallel-rsp/CMakeLists.txt
@@ -6,7 +6,7 @@

 set(NAME_PLUGIN_M64P "mupen64plus-rsp-parallel")

-include_directories(../mupen64plus-core/src/api)
+include_directories(/usr/include/mupen64plus)
 add_definitions(-DM64P_PLUGIN_API)
 add_definitions(-DPARALLEL_INTEGRATION)