Package Details: dolphin-emu-nogui-git 2409.r299.gd1ef4d5cc1-1

Git Clone URL: https://aur.archlinux.org/dolphin-emu-git.git (read-only, click to copy)
Package Base: dolphin-emu-git
Description: A Gamecube / Wii emulator - no GUI - git version
Upstream URL: https://dolphin-emu.org
Keywords: dolphin emu emulator game gamecube gui nintendo remote revolution triforce wii wiimote
Licenses: GPL-2.0-or-later
Conflicts: dolphin-emu-cli, dolphin-emu-nogui
Provides: dolphin-emu-cli, dolphin-emu-nogui
Submitter: None
Maintainer: dpeukert
Last Packager: dpeukert
Votes: 123
Popularity: 1.12
First Submitted: 2011-08-20 13:05 (UTC)
Last Updated: 2024-11-10 13:18 (UTC)

Dependencies (45)

Required by (0)

Sources (9)

Pinned Comments

dpeukert commented on 2020-04-10 12:34 (UTC) (edited on 2020-09-26 17:48 (UTC) by dpeukert)

The PKGBUILD for this package is hosted here (contributions are welcome!): https://gitlab.com/dpeukert/pkgbuilds/tree/main/dolphin-emu-git

Latest Comments

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

alucryd commented on 2017-06-04 20:04 (UTC)

Must have been fixed upstream, works here now.

gourdcaptain commented on 2017-06-04 03:55 (UTC) (edited on 2017-06-04 06:29 (UTC) by gourdcaptain)

I'm getting a bunch of warnings trying to compile this ending with the error: /home/gourdcaptain/.cache/pacaur/dolphin-emu-git/src/dolphin-emu/Externals/wxWidgets3/include/wx/cmdargs.h: In member function ‘ParseCommandLine’: void* operator new[](std::size_t) _GLIBCXX_THROW (std::bad_alloc)" EDIT: Later experimentation notes the build works if you disable the QT UI and that package, for the record.

worfhard commented on 2017-05-20 22:04 (UTC)

Qt is starting to get a lot of updates now, would be nice if it was fixed

VerruckteFuchs commented on 2017-05-15 23:48 (UTC)

The latest update to 5.0.r3755.f4e8a01d16 fixed the issues I was having. I also can now use Vulkan without crashing for the first time. Nvidia: 381.22-1 Kernel: 4.10.13

saildata commented on 2017-03-13 19:55 (UTC)

Confirmed working: Version: 5.0.r2897.8035270aa8-1 Kernel: 4.10 NVIDIA: 378.13 Tested: Vulkan 1080p, 2160p; No regressions noted.

VerruckteFuchs commented on 2017-02-17 22:57 (UTC) (edited on 2017-02-17 23:00 (UTC) by VerruckteFuchs)

When I try to start a game I'm getting: WriteRest: op out of range (0x41f5a039 uses 0x7f42f087d2a8) Clicking "No" on the dialog box results in dolphin-emu aborting with a core dump. edit: I'm also getting some compiler issues/warnings with JIT during compile along with some UGeckoInstruction inst being defined as the wrong type.

mitch1887 commented on 2017-02-06 14:51 (UTC)

I am also having issues with missing icons and INI files.

piejacker875 commented on 2017-02-04 14:21 (UTC)

I've been having some trouble with missing INI files. This is leading to missing icons in the main window and games not functioning properly due to configuration settings not being applied.

alucryd commented on 2017-01-29 15:53 (UTC)

makepkg allows for installing only the split packages you want, there's nothing wrong with the PKGBUILD.

lmello commented on 2017-01-27 19:43 (UTC)

The PKGBUILD shouldn't automatically install three packages at once: package_dolphin-emu-git() { provides=('dolphin-emu') conflicts=('dolphin-emu') cd dolphin-emu/build make DESTDIR="${pkgdir}" install rm -rf "${pkgdir}"/usr/bin/dolphin-emu-{nogui,qt2} install -Dm 644 ../Data/51-usb-device.rules -t "${pkgdir}"/usr/lib/udev/rules.d/ } package_dolphin-emu-cli-git() { depends=('dolphin-emu-git') cd dolphin-emu/build install -dm 755 "${pkgdir}"/usr/bin install -m 755 Binaries/dolphin-emu-nogui "${pkgdir}"/usr/bin/dolphin-emu-cli } package_dolphin-emu-qt-git() { depends=('dolphin-emu-git' 'qt5-base') cd dolphin-emu/build install -dm 755 "${pkgdir}"/usr/bin install -m 755 Binaries/dolphin-emu-qt2 "${pkgdir}"/usr/bin/ }