FreeBSD 10.3 64 Bit: Dolphin

xeno74

Well-Known Member
Ich spiele öfter Wii-Spiele mit Hilfe von Dolphin. Nach dem letzten pkg upgrade auf die Version 5.0.3, lässt sich Dolphin nicht mehr starten (Core dump). Ich habe dann wieder die ältere Version installiert (5.0.r_2).
Hat schon jemand Dolphin 5.0.3 ausprobiert? Wo kann ich das Problem melden?
 
Ganael hat einen Patch veröffentlicht und Dolphin funktioniert wieder.

Ganael schrieb:
In short, Nvidia driver seems to have a problem when the main application linking to LibGL also links to another library that links to libthr. One fix seems to be to link the main application to libthr too. I'll prepare a patch for you ASAP to test that fix.

Code:
--- Source/Core/Common/CMakeLists.txt.orig    2016-06-24 08:09:07.000000000 +0000
+++ Source/Core/Common/CMakeLists.txt    2017-01-12 20:59:59.578506000 +0000
@@ -88,7 +88,7 @@
         set(SRCS ${SRCS} GL/GLInterface/GLX.cpp)
         # GLX has a hard dependency on libGL.
         # Make sure to link to it if using GLX.
-        set(LIBS ${LIBS} ${OPENGL_LIBRARIES})
+        set(LIBS ${OPENGL_LIBRARIES} thr ${LIBS})
     endif()
     set(SRCS ${SRCS} GL/GLInterface/X11_Util.cpp)
     set(LIBS ${LIBS} ${XRANDR_LIBRARIES})
 
Zurück
Oben