Package Details: cemu 2.0.572-1

Git Clone URL: https://aur.archlinux.org/cemu.git (read-only, click to copy)
Package Base: cemu
Description: Software to emulate Wii U games and applications on PC
Upstream URL: https://cemu.info
Keywords: emulator wii-u
Licenses: MPL2
Submitter: Anuskuss
Maintainer: kescherAUR
Last Packager: kescherAUR
Votes: 23
Popularity: 1.58
First Submitted: 2022-09-05 15:23 (UTC)
Last Updated: 2024-05-09 09:43 (UTC)

Dependencies (25)

Required by (1)

Sources (6)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 Next › Last »

DexyStorm commented on 2023-01-19 06:43 (UTC)

@kescherAUR

i ran

yay --rebuild -S cemu

but unfortunately still same problem

kescherAUR commented on 2023-01-16 04:42 (UTC)

@DexyStorm I can't reproduce your issue, but I'm using AMD graphics, so if it's an NVIDIA issue, I can't really test it. If you've previously had Cemu installed, would you mind trying a clean build with yay --rebuild -S cemu?

DexyStorm commented on 2023-01-16 00:09 (UTC) (edited on 2023-01-16 02:33 (UTC) by DexyStorm)

IDK what im doing wrong but when i try to run it, it get

Unhandled unknown exception; terminating the application.

i installed it with yay.

Kernel: 6.1.6-arch1-1

GPU: NVIDIA GeForce RTX 2070 SUPER

X11

kescherAUR commented on 2023-01-08 22:18 (UTC)

@Max-P ah, sorry. yep, it seems you were right. I didn't test enough then.

Max-P commented on 2023-01-08 22:05 (UTC)

It looks like ${CC-} wasn't quite enough to not trip errexit. It looks like to be because assigning the return value of a failed command to a variable is not enough to satisfy strict mode.

echo $(false) # ok
test=$(false) # error

So I think we'll have to add the || true anyway to make it work, because now even though the ${CC-} fixes the unbound variable, the test expression [[ ... ]] still returns false, so the whole $(...) expression is false.

To test:

bash -eux PKGBUILD && echo OK || echo FAIL

kescherAUR commented on 2022-12-29 06:12 (UTC)

v2.0-25 fixes an issue for macOS only, as far as I can tell.

kescherAUR commented on 2022-12-28 21:32 (UTC) (edited on 2022-12-28 21:38 (UTC) by kescherAUR)

The v2.0-24 tag was just published. However, the two tags are identical. It's only to trigger a rebuild for the project's CI that builds their AppImage. Therefore, I am not updating the package to it.

kescherAUR commented on 2022-12-27 14:19 (UTC)

Since upstream highly suggests using clang (https://github.com/cemu-project/Cemu/blob/main/BUILD.md#for-arch-and-derivatives), I might actually just remove that check as a whole at some point. For now, I'll simply apply the fix (without the || true, as both variables being expanded to either a set or an empty value suffices for strict mode).

Thanks for pointing out the issue, @Max-P.