Package Base Details: dolphin-emu-git

Git Clone URL: https://aur.archlinux.org/dolphin-emu-git.git (read-only, click to copy)
Keywords: dolphin emu emulator game gamecube gui nintendo remote revolution triforce wii wiimote
Submitter: None
Maintainer: dpeukert
Last Packager: dpeukert
Votes: 120
Popularity: 0.22
First Submitted: 2011-08-20 13:05 (UTC)
Last Updated: 2024-05-09 20:26 (UTC)

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 .. 16 17 18 19 20 21 22 23 24 25 26 .. 53 Next › Last »

pedrofleck commented on 2017-11-06 20:27 (UTC)

The WX GUI is broken (really small icons/banners, Gdk-critical errors in console and the configurations text isn't formatted correctly) in the last build but I tried Dolphin help and apparently nothing has changed

hcorion commented on 2017-10-29 19:52 (UTC)

That's because you need to launch the Qt version via dolphin-emu-qt2 @gfurst

gfurst commented on 2017-10-28 03:34 (UTC)

I don't get it, apparently the qt version of this is built on this aur repository, however, even if its installed, I'm still running a gtk version?

qlipsos commented on 2017-10-09 03:13 (UTC)

Now depends on "libhidapi-hidraw.so.0" Provided by "hidapi" package

sleepyoh commented on 2017-07-16 01:12 (UTC)

I can confirm that it build's fine now! =) Thank's!

alucryd commented on 2017-07-15 17:49 (UTC)

Re-enabled PIE and disabled LTO for the Qt build. Arch now enforces PIE for everything.

sleepyoh commented on 2017-07-15 17:15 (UTC)

I say the same as aphirst and krakn, build error 45%, not using any front-end only makepkg.

aphirst commented on 2017-07-14 21:32 (UTC)

I'm getting build/link errors at the same place that "krakn" does, except I don't seem to have -fno-pie set anywhere.

WeenieHut commented on 2017-07-13 21:57 (UTC) (edited on 2017-07-13 22:25 (UTC) by WeenieHut)

CommandLine Error: Option 'help-list' registered more than once! Whenever I try to run a game or change a setting Dolphin crashes with the error above. I've read that its an upstream LLVM error. Can anyone else confirm the issue and which LLVM I should be using to compile? I was using LLVM-svn which I had last compiled from source last year. I'm guessing stable repo LLVM has surpassed the year old svn version I had built. Removed SVN and installed latest stable. Compiling now. Will update with results. Switching to LLVM stable fixed the issue!! All the dank Vulkan performance <3

0x647262 commented on 2017-07-13 04:14 (UTC) (edited on 2017-07-13 13:43 (UTC) by 0x647262)

Build fails with: ``` -DCMAKE_CXX_FLAGS='-fno-pie' ``` ``` [ 45%] Linking CXX executable ../../../Binaries/traversal_server /usr/bin/ld: /tmp/ccG45bps.ltrans0.ltrans.o: relocation R_X86_64_32S against `.bss' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: final link failed: Nonrepresentable section on output collect2: error: ld returned 1 exit status make[2]: *** [Source/Core/Common/CMakeFiles/traversal_server.dir/build.make:95: Binaries/traversal_server] Error 1 make[1]: *** [CMakeFiles/Makefile2:965: Source/Core/Common/CMakeFiles/traversal_server.dir/all] Error 2 make: *** [Makefile:152: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... ``` Compiling with: ``` CFLAGS+=('-fPIC') CXXFLAGS+=('-fPIC') ``` ``` [ 45%] Linking CXX executable ../../../Binaries/traversal_server /usr/bin/ld: /tmp/ccKaaibk.ltrans0.ltrans.o: relocation R_X86_64_32S against `.bss' can not be used when making a shared object; recompile with -fPIC /usr/bin/ld: final link failed: Nonrepresentable section on output collect2: error: ld returned 1 exit status make[2]: *** [Source/Core/Common/CMakeFiles/traversal_server.dir/build.make:95: Binaries/traversal_server] Error 1 make[1]: *** [CMakeFiles/Makefile2:965: Source/Core/Common/CMakeFiles/traversal_server.dir/all] Error 2 make: *** [Makefile:152: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... ``` Build Environment: ``` #-- Compiler and Linker Flags # -march (or -mcpu) builds exclusively for an architecture # -mtune optimizes for an architecture, but builds for whole processor family CPPFLAGS="-D_FORTIFY_SOURCE=2" CFLAGS="-march=native -O2 -pipe -fstack-protector-strong -fPIC" CXXFLAGS="-march=native -O2 -pipe -fstack-protector-strong -fPIC" LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro" #-- Make Flags: change this for DistCC/SMP systems MAKEFLAGS="-j 32" #-- Debugging flags DEBUG_CFLAGS="-g -fvar-tracking-assignments" DEBUG_CXXFLAGS="-g -fvar-tracking-assignments" ``` If you need anything else, just let me know.