2007/11/10, Glenn Holmer <[EMAIL PROTECTED]>: > In 10.3, I get nothing when I run amdcccle from a command prompt. No > error message, no core dump, it just hangs. Control-C gets me back to > the prompt OK. The driver itself works great (glxgears reports ~1800 > fps). This is on a ThinkPad T43 (Radeon Mobility X300). > > Anybody know a way to get it running? > > [EMAIL PROTECTED]:~ # rpm -qa | grep fglrx > ati-fglrxG01-kmp-default-8.42.3_2.6.22.9_0.4-1.1 > x11-video-fglrxG01-8.42.3-2.1
I posted this to the list yesterday: (snatched from http://www.phoronix.com/forums/showthread.php?t=6028) ------------------------- little HowTo for openSUSE 10.3 32-bit (based on Snake's HOWTO) 1. Download xorg-x11-libX11-7.2-75.src.rpm <ftp://sunsite.informatik.rwth-aachen.de/pub/linux/opensuse/distribution/10.3/repo/src-oss/suse/src/xorg-x11-libX11-7.2-75.src.rpm> 2. Open a console window as user not as root Code: rpm -Uvh xorg-x11-libX11-7.2-75.src.rpm 3. Now you can find file "xorg-x11-libX11.spec" at /usr/src/packages/SPECS edit these 2 lines: Code: %define xcb 0 # rm -rf "$RPM_BUILD_ROOT" 4. build the rpm packages Code: rpmbuild -ba /usr/src/packages/SPECS/xorg-x11-libX11.spec 5. After that, there are a new directory "/var/tmp/xorg-x11-libX11-7.2-build/". From there you can copy the needed file. For example: Code: cp /usr/var/tmp/xorg-x11-libX11-7.2-build/usr/lib/libX11.so* ~/ 6. Try amdcccle Code: LD_PRELOAD=~/libX11.so.6 amdcccle 7. If all runs fine , you can remove the temp directory. Code: rm -r /var/tmp/xorg-x11-libX11-7.2-build ---------------------------- Worked for me. Magnar -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
