ssj195
Member
- Joined
- Apr 15, 2006
- Messages
- 78
It actually didn't even compile for me on x86... Some linker problem with deflate/libz and I have no idea how to fix itI don't have my Pandora yet, but I just compiled this for my sheevaplug. It's a bit "choppy" i.e. if you draw a circle quickly you're likely to end up with a pentagon, or even a triangle(!), but this could be due to many things: working over VNC; the sheevaplug's lack of hardware fpu; etc.
Yeah, that was a weird one - I've compiled on three machines, now, and only had this on one of them (the one using the 'gold' linker, which is probably it).
It's easily fixed: in the top-level CMakeLists.txt, underneath
Code:
find_package ( Qt4 REQUIRED )
add
Code:
find_package ( ZLIB REQUIRED )
and in src/shared/CMakeLists.txt, add
Code:
${ZLIB_LIBRARIES}
after
Code:
${QT_LIBRARIES}
or apply this patch.
For ARM, you'll need this one.
Last edited by a moderator: