> 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 [email protected] http://mail.gnome.org/mailman/listinfo/ekiga-list
