Dolphin, the GameCube and Wii emulator - Forums

Full Version: [SOLVED] Dolphin Git on Archlinux Fails to Compile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to compile dolphin git 3161cdfa8eff2ec0ba4bbab6733d3702169a6287 and it fails returning
Linking CXX executable ../../../Binaries/dolphin-emu
CMakeFiles/dolphin-emu.dir/Frame.cpp.o: In function `CFrame::OnKeyDown(wxKeyEvent&)':
Frame.cppSad.text+0x5ed9): undefined reference to `wxCommandEvent::Clone() const'
collect2: error: ld returned 1 exit status
Source/Core/DolphinWX/CMakeFiles/dolphin-emu.dir/build.make:1315: recipe for target 'Binaries/dolphin-emu' failed
make[2]: *** [Binaries/dolphin-emu] Error 1
CMakeFiles/Makefile2:679: recipe for target 'Source/Core/DolphinWX/CMakeFiles/dolphin-emu.dir/all' failed
make[1]: *** [Source/Core/DolphinWX/CMakeFiles/dolphin-emu.dir/all] Error 2
Makefile:146: recipe for target 'all' failed
make: *** [all] Error 2
how can I fix that wx error?
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61214

To work around the issue, you can rebuild wxgtk with --disable-visibility.
(05-19-2014, 09:10 AM)delroth Wrote: [ -> ]See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61214
To work around the issue, you can rebuild wxgtk with --disable-visibility.
thank you