From: Thorsten J. <tho...@t-...> - 2005-09-02 18:08:57
|
Hello Dennis, i´m using Slackintosh. Slackintosh is a (unofficial) port of Slackware for Mac. At the moment i build Gnome-Packages on my mac. The basic for this is freerock gnome. One of the many packages ist libvisual. This won´t build. I made a little patch, which let me build libvisual. At the end of this patch (for lv_cpu.c): *************** *** 424,428 **** #endif /* VISUAL_ARCH_X86 */ ! #if VISUAL_ARCH_POWERPC check_os_altivec_support (); #endif /* VISUAL_ARCH_POWERPC */ --- 424,428 ---- #endif /* VISUAL_ARCH_X86 */ ! #if defined(VISUAL_ARCH_POWERPC) check_os_altivec_support (); #endif /* VISUAL_ARCH_POWERPC */ I think that´s a bug. The rest of the patch is: *************** *** 161,174 **** _lv_powerpc_canjump = 1; ! asm volatile ("mtspr 256, %0\n\t" "vand %%v0, %%v0, %%v0" : ! : "r" (-1)); signal (SIGILL, SIG_DFL); ! _lv_cpu_caps.hasAltiVec = 1; } ! #endif } #endif --- 161,174 ---- _lv_powerpc_canjump = 1; ! /*asm volatile ("mtspr 256, %0\n\t" "vand %%v0, %%v0, %%v0" : ! : "r" (-1));*/ signal (SIGILL, SIG_DFL); ! _lv_cpu_caps.hasAltiVec = 0; } ! #endif } #endif I have to disable it, because i get an error which say, that "vand" is unknown. Maybe you have a idee, where the problem is. Bye Thorsten Dennis Smit wrote: >Of course we want to know, please try to describe the bug as >detailed as possible. > >Which client program are you running, which plugin are you using >and so on. > > >On Fri, 2005-09-02 at 17:06 +0200, Thorsten Johannvorderbrueggen wrote: > > >>i found a bug on ppc-arch. Who want´s to know? >> >>Bye >> Thorsten >> >> >>------------------------------------------------------- >>SF.Net email is Sponsored by the Better Software Conference & EXPO >>September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices >>Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA >>Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf >>_______________________________________________ >>Libvisual-users mailing list >>Lib...@li... >>https://lists.sourceforge.net/lists/listinfo/libvisual-users >> >> > > > >------------------------------------------------------- >SF.Net email is Sponsored by the Better Software Conference & EXPO >September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices >Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA >Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf >_______________________________________________ >Libvisual-users mailing list >Lib...@li... >https://lists.sourceforge.net/lists/listinfo/libvisual-users > > > |