Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Fehler beim Kompilieren von libvisual-0.2.0
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
Lenz
Veteran
Veteran


Joined: 17 Jul 2003
Posts: 1439
Location: Marburg [HE, D, EU]

PostPosted: Fri Mar 04, 2005 11:23 am    Post subject: Fehler beim Kompilieren von libvisual-0.2.0 Reply with quote

Hallo,

seit gestern möchte Portage[tm] bei mir libvisual auf Version 0.2.0 updaten. Leider bricht er jedesmal an dieser Stelle ab:

Code:
.c; \
then mv -f ".deps/lv_plugin.Tpo" ".deps/lv_plugin.Plo"; else rm -f ".deps/lv_plugin.Tpo"; exit 1; fi
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../libvisual -I.. -I../libvisual -DPLUGPATH=\"/usr/lib/libvisual\" -march=athlon-xp -O3 -pipe -funroll-loops -fomit-frame-pointer -MT lv_plugin.lo -MD -MP -MF .deps/lv_plugin.Tpo -c lv_plugin.c  -fPIC -DPIC -o .libs/lv_plugin.o
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../libvisual -I.. -I../libvisual   -DPLUGPATH="\"/usr/lib/libvisual\"" -march=athlon-xp -O3 -pipe -funroll-loops -fomit-frame-pointer   -MT lv_video.lo -MD -MP -MF ".deps/lv_video.Tpo" -c -o lv_video.lo lv_video.c;\
then mv -f ".deps/lv_video.Tpo" ".deps/lv_video.Plo"; else rm -f ".deps/lv_video.Tpo"; exit 1; fi
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../libvisual -I.. -I../libvisual -DPLUGPATH=\"/usr/lib/libvisual\" -march=athlon-xp -O3 -pipe -funroll-loops -fomit-frame-pointer -MT lv_video.lo -MD -MP -MF .deps/lv_video.Tpo -c lv_video.c  -fPIC -DPIC -o .libs/lv_video.o
if /bin/sh ../libtool --mode=compile i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../libvisual -I.. -I../libvisual   -DPLUGPATH="\"/usr/lib/libvisual\"" -march=athlon-xp -O3 -pipe -funroll-loops -fomit-frame-pointer   -MT lv_video_mmx.lo -MD -MP -MF ".deps/lv_video_mmx.Tpo" -c -o lv_video_mmx.lolv_video_mmx.c; \
then mv -f ".deps/lv_video_mmx.Tpo" ".deps/lv_video_mmx.Plo"; else rm -f ".deps/lv_video_mmx.Tpo"; exit 1; fi
 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../libvisual -I.. -I../libvisual -DPLUGPATH=\"/usr/lib/libvisual\" -march=athlon-xp -O3 -pipe -funroll-loops -fomit-frame-pointer -MT lv_video_mmx.lo -MD -MP -MF .deps/lv_video_mmx.Tpo -c lv_video_mmx.c  -fPIC -DPIC -o .libs/lv_video_mmx.o
{standard input}: Assembler messages:
{standard input}:820: Error: suffix or operands invalid for `movd'
make[2]: *** [lv_video_mmx.lo] Fehler 1
make[2]: *** Warte auf noch nicht beendete Prozesse...
make[2]: Leaving directory `/var/tmp/portage/libvisual-0.2.0/work/libvisual-0.2.0/libvisual'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/var/tmp/portage/libvisual-0.2.0/work/libvisual-0.2.0'
make: *** [all] Fehler 2

!!! ERROR: media-libs/libvisual-0.2.0 failed.
!!! Function src_compile, Line 18, Exitcode 2
!!! (no error message)
!!! If you need support, post the topmost build error, NOT this status message.


Es scheint, dass er ein Problem mit lv_video_mmx.lo hat. Aber so ganz sagt mir die Fehlermeldung nichts. Kann sich einer einen Reim drauf machen?


Danke im vorraus,

-- Lenz
_________________
.:: Lenz' Signature 1.7b ::.

| Gentoo Linux since v1.4 (08-2003) [Screenshot]
| NetHack Highscore: 5.476.380 Pts., Val-Dwa-Fem-Law, ~ ascended to demigoddess-hood ~
Back to top
View user's profile Send private message
KTMLC4
n00b
n00b


Joined: 30 Jun 2002
Posts: 18

PostPosted: Mon Mar 07, 2005 4:52 pm    Post subject: Reply with quote

Hi,

bei mir hat es geholfen für das Kompilieren von libvisual die CFLAGS in der make.conf auszukommentieren.

Gruß
Philipp
Back to top
View user's profile Send private message
adumare
n00b
n00b


Joined: 27 Apr 2003
Posts: 27

PostPosted: Mon Mar 14, 2005 6:06 pm    Post subject: Reply with quote

Hopefully you can translate this back into to German....

I had the same problem I had CFLAGS="-O2 -march=pentium4 -funroll-loops -pipe" I changed it to CFLAGS="-march=pentium4 -funroll-loops -pipe" and libvisual built fine.

Thanks
--Andrew
Back to top
View user's profile Send private message
Gargamel_968
n00b
n00b


Joined: 25 Dec 2003
Posts: 5
Location: Czech republic

PostPosted: Tue Mar 22, 2005 6:07 pm    Post subject: Reply with quote

It is caused by the "-funroll-loops" cflag... I don't want to remove this in my global make.conf :(
Back to top
View user's profile Send private message
d3vlin
Tux's lil' helper
Tux's lil' helper


Joined: 02 Apr 2003
Posts: 134

PostPosted: Tue Mar 22, 2005 11:14 pm    Post subject: Reply with quote

Gargamel_968 wrote:
It is caused by the "-funroll-loops" cflag... I don't want to remove this in my global make.conf :(


well then how about using

Code:

CFLAGS="put your cflags without the -funroll-loops" emerge -u libvisual


worked fine for me (also had this problem)
I filed a bug: 86321
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum