|
View:
New views
15 Messages
—
Rating Filter:
Alert me
|
|
|
make errorhello,
i'm sending you this email because im trying to compile ekiga-3.2.4 but i have error at the make: ../../../../lib/engine/components/opal/h323-endpoint.cpp: In member function ‘void Opal::H323::EndPoint::Register(const Opal::Account&)’: ../../../../lib/engine/components/opal/h323-endpoint.cpp:277: erreur interne du compilateur: dans set_uids_in_ptset, à tree-ssa-structalias.c:4800 Veuillez soumettre un rapport complet d'anomalies, avec le source pré-traité si nécessaire. Consultez <file:///usr/share/doc/gcc-4.3/README.Bugs> pour plus de détail. make[6]: *** [h323-endpoint.lo] Erreur 1 make[6]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3/lib/engine/components/opal » make[5]: *** [all-recursive] Erreur 1 make[5]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3/lib/engine/components » make[4]: *** [all-recursive] Erreur 1 make[4]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3/lib/engine » make[3]: *** [all-recursive] Erreur 1 make[3]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3/lib » make[2]: *** [all] Erreur 2 make[2]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3/lib » make[1]: *** [all-recursive] Erreur 1 make[1]: quittant le répertoire « /mnt/dataone/ekiga-3.2.3 » make: *** [all] Erreur 2 If you can help me to solve this please. Best regards. Théo _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error> ../../../../lib/engine/components/opal/h323-endpoint.cpp: In member
> function > ‘void Opal::H323::EndPoint::Register(const Opal::Account&)’: > ../../../../lib/engine/components/opal/h323-endpoint.cpp:277: erreur > interne > du compilateur: dans set_uids_in_ptset, à tree-ssa-structalias.c:4800 > Veuillez soumettre un rapport complet d'anomalies, > avec le source pré-traité si nécessaire. > Consultez <file:///usr/share/doc/gcc-4.3/README.Bugs> pour plus de > détail. To get english error messages, run "export LANG=C" first. Anyway, this is an "internal comiler error". I'm only a user too, but I've found that I had to install gcc-4.4 on Debian stable to be able to compile Ekiga and/or ptlib/opal. (Although iirc the kinds of errors that I have seen were different. BTW, also try to run the make command again, to see whether it stops at the same place, to make sure it's not a problem with your computer hardware (like memory errors).) Christian. -- GMX FreeDSL Komplettanschluss mit DSL 6.000 Flatrate und Telefonanschluss für nur 17,95 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02 _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorChristian Jaeger a écrit :
>> ../../../../lib/engine/components/opal/h323-endpoint.cpp: In member >> function >> ‘void Opal::H323::EndPoint::Register(const Opal::Account&)’: >> ../../../../lib/engine/components/opal/h323-endpoint.cpp:277: erreur >> interne >> du compilateur: dans set_uids_in_ptset, à tree-ssa-structalias.c:4800 >> Veuillez soumettre un rapport complet d'anomalies, >> avec le source pré-traité si nécessaire. >> Consultez <file:///usr/share/doc/gcc-4.3/README.Bugs> pour plus de >> détail. >> > > To get english error messages, run "export LANG=C" first. > > Anyway, this is an "internal comiler error". I'm only a user too, but I've found that I had to install gcc-4.4 on Debian stable to be able to compile Ekiga and/or ptlib/opal. (Although iirc the kinds of errors that I have seen were different. BTW, also try to run the make command again, to see whether it stops at the same place, to make sure it's not a problem with your computer hardware (like memory errors).) > > Christian. > > based), you need gcc-4.2 or gcc-4.4 to avoid it (I only had this problem with gcc 4.3). From the information I red on the internet, it could be: 1) a bug from gcc 4.2 2) a hardware problem (such as bad memory) 3) not enough memory to compile Try to upgrade (or downgrade) gcc and g++ and it should be fine. If it still complaining about this, you probably had an other problem with your memory (1GB should be enough for compiling Opal). Regards, Paul. _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorhello,
OK i will try with gcc4-4 but im linux beginner :p Thanks to your help Théo _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorHello,
Thanks for your help, i will try to downgrade to ggc-4.2 but im linux beginner (based on ubuntu), but i will try to do that. Théo. _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorWelcome To The Real World a écrit :
> Hello, > > Thanks for your help, i will try to downgrade to ggc-4.2 but im linux > beginner (based on ubuntu), but i will try to do that. > > Théo. > In order to downgrade gcc, first you have to install gcc: sudo apt-get install gcc-4.2 And then change all the link in /usr/bin to be sure to use the good version of gcc: $ sudo -s # cd /usr/bin /usr/bin# rm cpp /usr/bin# rm gcc /usr/bin# rm g++ /usr/bin# ln -s /usr/bin/gcc-4.2 /usr/bin/gcc /usr/bin# ln -s /usr/bin/g++-4.2 /usr/bin/g++ /usr/bin# ln -s /usr/bin/ccp-4.2 /usr/bin/cpp You should get a message like this after changing gcc version: $ gcc --version gcc (GCC) 4.2.4 (Ubuntu 4.2.4-5ubuntu1) Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error> In order to downgrade gcc, first you have to install gcc:
> sudo apt-get install gcc-4.2 > > And then change all the link in /usr/bin to be sure to use the good > version of gcc: > $ sudo -s > # cd /usr/bin > /usr/bin# rm cpp > /usr/bin# rm gcc > /usr/bin# rm g++ > /usr/bin# ln -s /usr/bin/gcc-4.2 /usr/bin/gcc > /usr/bin# ln -s /usr/bin/g++-4.2 /usr/bin/g++ > /usr/bin# ln -s /usr/bin/ccp-4.2 /usr/bin/cpp The "proper" way to deal with this is to: export CC=gcc-4.2 export CXX=g++-4.2 then configure and build as normal. Christian. -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01 _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorLot of thanks to your help but im so novice to do this under linux. Did you know free visioconférence software under linux or windows who supports IPv6 ???
Thanks again by advance. Théo. _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error> Lot of thanks to your help but im so novice to do this under linux. Did
> you > know free visioconférence software under linux or windows who supports > IPv6 > ??? You could go through the Comparison_of_VoIP_software wikipedia page and check each for ipv6 support. Or you could learn how to get help for Linux. You should generally tell which Linux distro you are using (Ubuntu, Debian, Fedora, Linspire, ....), so people can help you appropriately. Also, I suggest you learn how to use IRC (http://en.wikipedia.org/wiki/Internet_Relay_Chat, search for "web based clients" there for a start), and then join the right channel for your distro. There is a channel for Ekiga, too (#ekiga on irc.freenode.net). Christian. -- GMX FreeDSL Komplettanschluss mit DSL 6.000 Flatrate und Telefonanschluss für nur 17,95 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02 _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error> There is a channel for Ekiga, too (#ekiga on irc.freenode.net).
Correction, #ekiga is on irc.gnome.org (not freenode). Christian. -- GMX FreeDSL Komplettanschluss mit DSL 6.000 Flatrate und Telefonanschluss für nur 17,95 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02 _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorOK just one thing, can u tell me if ekiga supports ipv6 with openh323 and ptlib ??
Regards. Théo _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorWelcome To The Real World wrote:
> OK just one thing, can u tell me if ekiga supports ipv6 with openh323 and > ptlib ?? ekiga does not yet support ipv6. IPv6 support is nearly complete, but is yet not working. -- Eugen _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error Welcome To The Real World wrote:
> > OK just one thing, can u tell me if ekiga supports ipv6 with openh323 and > ptlib ?? If you need IPv6 support take at look at Linphone (http://www.linphone.org/) It does do IPv6 Bent _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make errorThanks for your link, i will try this. But it is possible to do visioconference with this (muliple participant) ???
Théo. _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
|
|
Re: make error2009/6/22 Welcome To The Real World <any0ne2007@...>:
> Thanks for your link, i will try this. But it is possible to do > videoconferencing with this (multiple participants) ??? > I'm not sure that Linphone by itself can do it. Asterisk can, but that's a completely different game. Bent _______________________________________________ ekiga-list mailing list ekiga-list@... http://mail.gnome.org/mailman/listinfo/ekiga-list |
| Free embeddable forum powered by Nabble | Forum Help |