![]() |
|
Compiling on Ubuntu 20.04 - fixesproto 6.0 error - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Support (https://forums.dolphin-emu.org/Forum-support) +--- Thread: Compiling on Ubuntu 20.04 - fixesproto 6.0 error (/Thread-compiling-on-ubuntu-20-04-fixesproto-6-0-error) |
Compiling on Ubuntu 20.04 - fixesproto 6.0 error - Leseratte10 - 02-04-2023 Hello, I'm trying to compile the latest version of Dolphin (46b99671d9158e0ca840c1d8ef249db0f321ced7) on Ubuntu 20.04, following the instructions on the Wiki: https://github.com/dolphin-emu/dolphin/wiki/Building-for-Linux I installed gcc-10 and gcc-11 (tested both), and I installed QT6. When running cmake, this is the result: Code: -- Xrandr foundAm I missing a dependency? I installed all dependencies that were listed in the wiki. Googling the error message I found a couple threads with similar issues but no solution (Example 1, Example 2) but not really a solution. Is the Wiki page missing some dependency for Ubuntu 20.04? Or did I somehow mess up my system so that this no longer works? EDIT: A freshly-installed Ubuntu 20.04 prints this instead: Code: -- Checking for module 'xi>=1.5.0'So I did probably mess up my system somehow. Does anyone have an idea how I can get it back to a working state? "xi" isn't really a name that one can google ... RE: Compiling on Ubuntu 20.04 - fixesproto 6.0 error - GenerationI - 02-04-2023 Maybe you need a newer version of cmake, but I'm not sure. I'm on Linux Mint 21 which has cmake version 3.22.1-1ubuntu1.22.04.1, which works for me. RE: Compiling on Ubuntu 20.04 - fixesproto 6.0 error - KHg8m3r - 02-04-2023 Check if you have `libxi-dev`installed RE: Compiling on Ubuntu 20.04 - fixesproto 6.0 error - Leseratte10 - 02-04-2023 Thanks for the responses. I've compared my "normal" machine with 20.04 where it fails, and a new clean VM with 20.04 where it works. Both of them have cmake in version 3.16.3-1ubuntu1.20.04.1 and libxi-dev in version 2:1.7.10-0ubuntu1, so that's not the issue. Reinstalling these also didn't help. RE: Compiling on Ubuntu 20.04 - fixesproto 6.0 error - Leseratte10 - 02-05-2023 Looks like I had a broken PPA installed. I used https://launchpad.net/~savoury1/+archive/ubuntu/ffmpeg4 to get a newer version of ffmpeg and VLC, and it looks like these have a newer version of libxfixes (6.0.0-1) that conflicts with some other stuff. I edited /usr/lib/x86_64-linux-gnu/pkgconfig/xfixes.pc and replaced "fixesproto >= 6.0" with "fixesproto >= 5.0" and now Dolphin compiles and runs again. Probably not the cleanest solution, but hey, it's working again. I'm going to try and report that to the PPA's maintainer then, maybe they can somehow fix whatever the conflict is. |