Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Discussion & Documentation Documentation, Tips & Tricks
  • Search

Upgrading gcc problems.

Unofficial documentation for various parts of Gentoo Linux. Note: This is not a support forum.
Post Reply
Advanced search
34 posts
  • 1
  • 2
  • Next
Author
Message
chrisaw
n00b
n00b
User avatar
Posts: 20
Joined: Sun Feb 06, 2005 9:23 pm
Location: /mnt/gentoo
Contact:
Contact chrisaw
Website

Upgrading gcc problems.

  • Quote

Post by chrisaw » Sat Jun 04, 2005 10:36 am

OK, people have been having problems with upgrading to gcc 3.4.4 (me included) and i managed to fix it. So, i thaught i'd write a guide on how i did it just incase its of any use to anyone =) This guide is also suitable for future versions =)

My problem was the following:

Code: Select all

/usr/bin/python: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
OK, so here we go...

1.) Firstly, we need to figure out what version your running of gcc right now and what you want to upgrade to. If you already know for certain you may skip to step 2.

Code: Select all

find /usr/lib/ -name libstdc*a
Allthough your version may differ from the one above we you should still be able to fix it with the same methods =) This command may fail and if so don't worry about it, we can still get the version.

You should get an output like the following:

Code: Select all

dragon / # find /usr/lib/ -name libstdc*a
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/libstdc++.la
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/libstdc++.a
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/libstdc++_pic.a
From this we can guess that the safe version of gcc is 3.4.4.

2.) Edit your /etc/ld.so.conf with your desired editor (Personally i used nano but the choice is yours.) and change the line containing /usr/lib/gcc/ to the version we found above (3.4.4 in this case). Such as the example below:

Code: Select all

# ld.so.conf autogenerated by env-update; make all changes to
# contents of /etc/env.d directory
/usr/local/lib
/usr/i686-pc-linux-gnu/lib
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4
/usr/lib/libstdc++-v3/
3.) Now run the following command to apply your settings.

Code: Select all

ldconfig -v
4.) OK, so now were on the version before the latest, great! Now lets get on to the latest =) You should be able to run gcc-concig now run gcc-config -l and you should get an output similar to the following.

Code: Select all

dragon / # gcc-config -l
[1] i386-pc-linux-gnu-3.3.5
[2] i386-pc-linux-gnu-3.3.5-hardened
[3] i386-pc-linux-gnu-3.3.5-hardenednopie
[4] i386-pc-linux-gnu-3.3.5-hardenednossp
[5] i686-pc-linux-gnu-3.4.4
[6] i686-pc-linux-gnu-3.4.4-hardened
[7] i686-pc-linux-gnu-3.4.4-hardenednopie
[8] i686-pc-linux-gnu-3.4.4-hardenednopiessp
[9] i686-pc-linux-gnu-3.4.4-hardenednossp
5.) If you do get this then now run:

Code: Select all

gcc-config 5 (Or whichever is the latest && source /etc/profile && fix_libtool_files.sh 3.4.4 (or whatever the safe version was)
6.) You "should" now be on the latest gcc version, congrats! Let's test it with the following:

Code: Select all

env-update
7.) If you didn't get any errors from the env-update command then youre fully operational =)

Thanks fly out to kloeri for his help with this problem!

EDIT: Sorry folks, i messed the version numbers up =$ Fixed now! =)
Last edited by chrisaw on Thu Jun 30, 2005 9:57 pm, edited 10 times in total.
Top
UncleOwen
Veteran
Veteran
Posts: 1493
Joined: Thu Feb 27, 2003 9:16 pm
Location: Germany, Hamburg

  • Quote

Post by UncleOwen » Sat Jun 04, 2005 10:43 am

gcc-3.4.5? wtf are you talking about? There is no gcc-3.4.4, neither in portage nor on gcc.gnu.org.
Top
xafan
n00b
n00b
Posts: 13
Joined: Tue Apr 19, 2005 2:17 am

  • Quote

Post by xafan » Sat Jun 04, 2005 11:03 am

UncleOwen wrote:gcc-3.4.5? wtf are you talking about? There is no gcc-3.4.4, neither in portage nor on gcc.gnu.org.
Huh? http://gcc.gnu.org/gcc-3.4/
Top
UncleOwen
Veteran
Veteran
Posts: 1493
Joined: Thu Feb 27, 2003 9:16 pm
Location: Germany, Hamburg

  • Quote

Post by UncleOwen » Sat Jun 04, 2005 11:37 am

May 18, 2005

The GNU project and the GCC developers are pleased to announce the release of GCC 3.4.4.

This release is a bug-fix release, containing fixes for regressions in GCC 3.4.3 relative to previous releases of GCC.
No 3.4.5
Top
astralbat
n00b
n00b
Posts: 33
Joined: Sun Jan 23, 2005 7:44 pm

Thanks a lot!

  • Quote

Post by astralbat » Sat Jun 04, 2005 11:41 am

Thats great!
I thought I really trashed my system..!

Now if only I knew what all that meant! :)
Top
Maedhros
Bodhisattva
Bodhisattva
User avatar
Posts: 5511
Joined: Wed Apr 14, 2004 8:10 pm
Location: Durham, UK

  • Quote

Post by Maedhros » Sat Jun 04, 2005 12:20 pm

Moved from Other Things Gentoo to Documentation, Tips & Tricks.

For anyone still having problems, please follow up here: http://forums.gentoo.org/viewtopic-t-344483.html
Top
Karsten1973
Guru
Guru
Posts: 303
Joined: Fri Dec 17, 2004 9:28 am
Location: Berlin, Germany

  • Quote

Post by Karsten1973 » Sat Jun 04, 2005 12:25 pm

This has been very helpful!!! Thank you!
I could be arguing on my own time.
Top
buckminster
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 80
Joined: Wed Oct 06, 2004 7:51 am
Location: Oberhausen, Germany

  • Quote

Post by buckminster » Sat Jun 04, 2005 1:20 pm

Hi,

it works very well. Thanks a lot.

edit: it works as long as it comes to emerge an kde 3.4.1 package

All people who do say, that one of the greatest advantages of gentoo is this forum, are right.


Thanks

Frank
Top
Koala Kid
Guru
Guru
User avatar
Posts: 382
Joined: Fri May 09, 2003 2:07 pm

  • Quote

Post by Koala Kid » Sat Jun 04, 2005 4:01 pm

Thank you very much, worked great for me. :P
"People are the worst, the worst thing about music is that people play it". M. Patton.
Top
Koala Kid
Guru
Guru
User avatar
Posts: 382
Joined: Fri May 09, 2003 2:07 pm

  • Quote

Post by Koala Kid » Sat Jun 04, 2005 4:47 pm

Not so good... emerge gnome-vfs-2.10.0-r2 fails with the following error:

Code: Select all

 i686-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I.. -I../imported/neon -pthread -DORBIT2=1 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -pthread -DORBIT2=1 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -D_FILE_OFFSET_BITS=64 -D_BSD_SOURCE -D_LARGEFILE64_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DSSH_PROGRAM=\"/usr/bin/ssh\" -DG_DISABLE_DEPRECATED -DDATADIR=\"/usr/share\" -DPREFIX=\"/usr\" -DLIBDIR=\"/usr/lib\" -DSYSCONFDIR=\"/etc\" -DG_LOG_DOMAIN=\"gnome-vfs-modules\" -march=athlon-xp -O2 -pipe -fomit-frame-pointer -c fstype.c -MT fstype.lo -MD -MP -MF .deps/fstype.TPlo -o fstype.o >/dev/null 2>&1
/bin/sh ../libtool --mode=link i686-pc-linux-gnu-gcc  -march=athlon-xp -O2 -pipe -fomit-frame-pointer   -o libfile.la -rpath /usr/lib/gnome-vfs-2.0/modules -export_dynamic -avoid-version -module -no-undefined file-method.lo fstype.lo -lfam -Wl,--export-dynamic -pthread -lgobject-2.0 -lgconf-2 -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0   ../libgnomevfs/libgnomevfs-2.la -lrt
grep: /usr/lib/gcc/i686-pc-linux-gnu/3.4.3-20050110/libstdc++.la: No such file or directory
/bin/sed: can't read /usr/lib/gcc/i686-pc-linux-gnu/3.4.3-20050110/libstdc++.la: No such file or directory
libtool: link: `/usr/lib/gcc/i686-pc-linux-gnu/3.4.3-20050110/libstdc++.la' is not a valid libtool archive
make[2]: *** [libfile.la] Error 1
make[2]: Leaving directory `/var/tmp/portage/gnome-vfs-2.10.0-r2/work/gnome-vfs-2.10.0/modules'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/gnome-vfs-2.10.0-r2/work/gnome-vfs-2.10.0'
make: *** [all] Error 2

!!! ERROR: gnome-base/gnome-vfs-2.10.0-r2 failed.
!!! Function gnome2_src_compile, Line 41, Exitcode 2
!!! compile failure
!!! If you need support, post the topmost build error, NOT this status message.
My /etc/ld.so.conf

Code: Select all

# ld.so.conf autogenerated by env-update; make all changes to
# contents of /etc/env.d directory
/usr/local/lib
/usr/lib/opengl/nvidia/lib
/usr/i686-pc-linux-gnu/lib
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4
/usr/lib/MozillaFirefox
/usr/lib/mozilla
/usr/lib
/usr/lib/openmotif-2.2
/opt/blackdown-jdk-1.4.2.01/jre/lib/i386/
/opt/blackdown-jdk-1.4.2.01/jre/lib/i386/native_threads/
/opt/blackdown-jdk-1.4.2.01/jre/lib/i386/classic/
/opt/blackdown-jdk-1.4.2.01/jre/lib/i386/server/
/usr/qt/3/lib
/usr/kde/3.4/lib
/usr/kde/3.3/lib
/usr/lib/nspr
/usr/lib/nss
/usr/games/lib
/usr/lib/libstdc++-v3/
gcc-config -l:
[1] i686-pc-linux-gnu-3.3.4
[2] i686-pc-linux-gnu-3.4.4 *
[3] i686-pc-linux-gnu-3.4.4-hardened
[4] i686-pc-linux-gnu-3.4.4-hardenednopie
[5] i686-pc-linux-gnu-3.4.4-hardenednopiessp
[6] i686-pc-linux-gnu-3.4.4-hardenednossp


What's going on here ?

Thank you.
"People are the worst, the worst thing about music is that people play it". M. Patton.
Top
Maedhros
Bodhisattva
Bodhisattva
User avatar
Posts: 5511
Joined: Wed Apr 14, 2004 8:10 pm
Location: Durham, UK

  • Quote

Post by Maedhros » Sat Jun 04, 2005 5:01 pm

That looks like this perennial problem: http://forums.gentoo.org/viewtopic-t-279020.html :wink:
No-one's more important than the earthworm.
Top
Koala Kid
Guru
Guru
User avatar
Posts: 382
Joined: Fri May 09, 2003 2:07 pm

  • Quote

Post by Koala Kid » Sat Jun 04, 2005 5:23 pm

Well, it doesn't work. I ran

Code: Select all

fix_libtool_files.sh 3.3.4
and then

Code: Select all

env-update && source /etc/profile
but it still fails with the same message.
"People are the worst, the worst thing about music is that people play it". M. Patton.
Top
Ibn al-Hazardous
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 133
Joined: Thu Sep 02, 2004 9:24 am
Location: Somewhere deep in the desert.
Contact:
Contact Ibn al-Hazardous
Website

  • Quote

Post by Ibn al-Hazardous » Sat Jun 04, 2005 7:36 pm

Thanks! This was just what I needed.

I have just one comment, though. In step 1)
gcc-config -c
and
find /usr/lib/ -name libstdc*a
produced different results. The result that find gave was the correct, while the result from gcc-config -c wsa b0rked. Perhaps you should only list the find-method?

Thanks again! :)
/Ibn
Top
Bob P
Advocate
Advocate
User avatar
Posts: 3374
Joined: Wed Oct 20, 2004 9:15 pm
Location: USA

  • Quote

Post by Bob P » Sat Jun 04, 2005 7:46 pm

Great Post @chrisaw! anyone who upgrades from GCC 3.4.3 to GCC 3.4.4 is going to need to read this thread. I just updated a perfectly functional GCC 3.4.3 system to GCC 3.4.4 and ran into the folloing problem immediately after emerging gcc:

Code: Select all

# gcc-config -l
/usr/bin/gcc-config: line 1: /etc/env.d/gcc/i686-pc-linux-gnu-3.4.3-20050110: No such file or directory
 * /usr/bin/gcc-config: Profile does not exist or invalid setting for /etc/env.d/gcc/i686-pc-linux-gnu-3.4.3-20050110
[1] i686-pc-linux-gnu-3.4.4
[2] i686-pc-linux-gnu-3.4.4-hardened
[3] i686-pc-linux-gnu-3.4.4-hardenednopie
[4] i686-pc-linux-gnu-3.4.4-hardenednopiessp
[5] i686-pc-linux-gnu-3.4.4-hardenednossp
so i tried specifying the first option, and here's what happened:

Code: Select all

gentoo pentium # gcc-config 1
 * Switching to i686-pc-linux-gnu-3.4.4 compiler...
/usr/bin/python: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
 * /usr/bin/gcc-config: Could not get portage CHOST!
/usr/bin/gcc-config: line 1: env: command not found
 * /usr/bin/gcc-config: Could not get portage CHOST!
/usr/bin/python: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
 * /usr/bin/gcc-config: Could not get portage CHOST!
/usr/bin/python: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
 * /usr/bin/gcc-config: Could not get portage CHOST!
/usr/bin/python: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
 * /usr/bin/gcc-config: Could not get portage CHOST!                                                                                                  [ ok ]

 * If you intend to use the gcc from the new profile in an already
 * running shell, please remember to do:

 *   # source /etc/profile

interestingly, the libstdc++.so.6 file is indeed available as a symlink to libstdc++.so.6.0.3:

Code: Select all

gentoo pentium # ls -lh /usr/lib/gcc/i686-pc-linux-gnu/3.4.4
total 5.3M
-rw-r--r--  1 root root 1.7K Jun  4 14:03 crtbegin.o
-rw-r--r--  1 root root 2.2K Jun  4 14:03 crtbeginS.o
-rw-r--r--  1 root root 2.0K Jun  4 14:03 crtbeginT.o
-rw-r--r--  1 root root 1.3K Jun  4 14:03 crtend.o
-rw-r--r--  1 root root 1.5K Jun  4 14:03 crtendS.o
-rw-r--r--  1 root root 4.5K Jun  4 14:03 hardened.specs
-rw-r--r--  1 root root 4.5K Jun  4 14:03 hardenednopie.specs
-rw-r--r--  1 root root 4.5K Jun  4 14:03 hardenednopiessp.specs
-rw-r--r--  1 root root 4.5K Jun  4 14:03 hardenednossp.specs
drwxr-xr-x  4 root root  536 Jun  4 14:03 include
drwxr-xr-x  3 root root  136 Jun  4 14:03 install-tools
-rw-r--r--  1 root root 1.2K Jun  4 14:03 libfrtbegin.a
-rw-r--r--  1 root root 349K Jun  4 14:03 libg2c.a
-rwxr-xr-x  1 root root  754 Jun  4 14:03 libg2c.la
lrwxrwxrwx  1 root root   15 Jun  4 14:03 libg2c.so -> libg2c.so.0.0.0
lrwxrwxrwx  1 root root   15 Jun  4 14:03 libg2c.so.0 -> libg2c.so.0.0.0
-rwxr-xr-x  1 root root 160K Jun  4 14:03 libg2c.so.0.0.0
-rw-r--r--  1 root root 259K Jun  4 14:03 libgcc.a
-rw-r--r--  1 root root  94K Jun  4 14:03 libgcc_eh.a
lrwxrwxrwx  1 root root   13 Jun  4 14:03 libgcc_s.so -> libgcc_s.so.1
-rw-r--r--  1 root root  35K Jun  4 14:03 libgcc_s.so.1
-rw-r--r--  1 root root  37K Jun  4 14:03 libgcov.a
-rw-r--r--  1 root root 1.7M Jun  4 14:03 libstdc++.a
-rwxr-xr-x  1 root root  909 Jun  4 14:03 libstdc++.la
lrwxrwxrwx  1 root root   18 Jun  4 14:03 libstdc++.so -> libstdc++.so.6.0.3
lrwxrwxrwx  1 root root   18 Jun  4 14:03 libstdc++.so.6 -> libstdc++.so.6.0.3
-rwxr-xr-x  1 root root 812K Jun  4 14:03 libstdc++.so.6.0.3
-rw-r--r--  1 root root 1.8M Jun  4 14:03 libstdc++_pic.a
-rw-r--r--  1 root root 149K Jun  4 14:03 libsupc++.a
-rwxr-xr-x  1 root root  849 Jun  4 14:03 libsupc++.la
-rw-r--r--  1 root root 4.5K Jun  4 14:03 specs
-rw-r--r--  1 root root 4.5K Jun  4 14:03 vanilla.specs
the aforementioned solution of editing the contents of /etc/ld.so.conf to reflect the correct version of GCC, followed by ldconfig -v solved the problem. :wink:
Top
Bob P
Advocate
Advocate
User avatar
Posts: 3374
Joined: Wed Oct 20, 2004 9:15 pm
Location: USA

  • Quote

Post by Bob P » Sat Jun 04, 2005 7:48 pm

just wondering -- has this problem already been reported to bugzilla?
Top
Ibn al-Hazardous
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 133
Joined: Thu Sep 02, 2004 9:24 am
Location: Somewhere deep in the desert.
Contact:
Contact Ibn al-Hazardous
Website

  • Quote

Post by Ibn al-Hazardous » Sat Jun 04, 2005 7:51 pm

Koala Kid wrote:Well, it doesn't work. I ran

Code: Select all

fix_libtool_files.sh 3.3.4
and then

Code: Select all

env-update && source /etc/profile
but it still fails with the same message.
Presuming that you upgraded from 3.4.3 to 3.4.4, while keeping 3.3.4 in the other slot, you might try:

Code: Select all

fix_libtool_files.sh 3.3.4
/Ibn
Top
Ibn al-Hazardous
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 133
Joined: Thu Sep 02, 2004 9:24 am
Location: Somewhere deep in the desert.
Contact:
Contact Ibn al-Hazardous
Website

  • Quote

Post by Ibn al-Hazardous » Sat Jun 04, 2005 7:53 pm

Ibn al-Hazardous wrote:
Koala Kid wrote:Well, it doesn't work. I ran

Code: Select all

fix_libtool_files.sh 3.3.4
and then

Code: Select all

env-update && source /etc/profile
but it still fails with the same message.
Presuming that you upgraded from 3.4.3 to 3.4.4, while keeping 3.3.4 in the other slot, you might try:

Code: Select all

fix_libtool_files.sh 3.3.4
Doh!

Code: Select all

fix_libtool_files.sh 3.4.3
Teh typo king!
/Ibn
Top
zeveck
Apprentice
Apprentice
User avatar
Posts: 173
Joined: Thu Mar 17, 2005 6:23 pm
Location: Boston, MA

  • Quote

Post by zeveck » Sat Jun 04, 2005 8:00 pm

:D THANK YOU!! :D

I was convinced my system was hosed and you saved it. W00t!

Also, I concur with Ibn al-Hazardous. The output of gcc-config -c was just wrong. Had I used that number instead of find I doubt things would have worked because no such file existed.
Top
Bob P
Advocate
Advocate
User avatar
Posts: 3374
Joined: Wed Oct 20, 2004 9:15 pm
Location: USA

  • Quote

Post by Bob P » Sat Jun 04, 2005 8:49 pm

zeveck wrote::D THANK YOU!! :D

I was convinced my system was hosed and you saved it. W00t!

Also, I concur with Ibn al-Hazardous. The output of gcc-config -c was just wrong. Had I used that number instead of find I doubt things would have worked because no such file existed.
if the output of gcc-config -c is wrong, then you need to file a bug report!
Top
Bob P
Advocate
Advocate
User avatar
Posts: 3374
Joined: Wed Oct 20, 2004 9:15 pm
Location: USA

  • Quote

Post by Bob P » Sat Jun 04, 2005 8:57 pm

my problem reported to bugzilla: http://bugs.gentoo.org/show_bug.cgi?id=95062

i'd still recommend filing the bug report about the gcc-config -c error.
Top
chrisaw
n00b
n00b
User avatar
Posts: 20
Joined: Sun Feb 06, 2005 9:23 pm
Location: /mnt/gentoo
Contact:
Contact chrisaw
Website

  • Quote

Post by chrisaw » Sat Jun 04, 2005 9:24 pm

Thanks for all your feedback folks! =) Glad to help the great people that make up this excellent community =D
Top
annunaki2k2
Tux's lil' helper
Tux's lil' helper
Posts: 119
Joined: Tue Oct 14, 2003 11:01 am
Location: Streatham, London, UK
Contact:
Contact annunaki2k2
Website

  • Quote

Post by annunaki2k2 » Sat Jun 04, 2005 9:31 pm

Just another grateful gentoo user here wishing to add my thanks.....
This solution worked a treat for me :D

Koala Kid:
As a tip, try running

Code: Select all

fix_libtool_files.sh 3.4.3-20050110
just incase if you haven't managed to resolve this one yet

I've had my system running now as ~x86 since installing with 1.4r2 and would be devistated if I had to reinstall!

Thanks once again!
The great thing about standards is there are so many to choose from.....
Top
Koala Kid
Guru
Guru
User avatar
Posts: 382
Joined: Fri May 09, 2003 2:07 pm

  • Quote

Post by Koala Kid » Sat Jun 04, 2005 10:10 pm

annunaki2k2 wrote:
Koala Kid:
As a tip, try running

Code: Select all

fix_libtool_files.sh 3.4.3-20050110
just incase if you haven't managed to resolve this one yet
Thank you, that's exactly what solved the problem :P

Actually, thank you all, guys.
"People are the worst, the worst thing about music is that people play it". M. Patton.
Top
Gentoonie
Apprentice
Apprentice
User avatar
Posts: 205
Joined: Tue Apr 06, 2004 1:23 pm
Location: near Munich | Bavaria | Germany
Contact:
Contact Gentoonie
Website

  • Quote

Post by Gentoonie » Sun Jun 05, 2005 9:12 am

I had the same problem, my system was kinda fucked up.

However, i found out that if you emerge the 3.4.4 with the USE-variable "multislot", you dont run into that problems!
Do you know the secret hand shake - you best use it.

GCC 4, Kernel 2.6.14-ck7, NPTL
Top
Nemein
n00b
n00b
User avatar
Posts: 70
Joined: Wed Jan 26, 2005 4:21 pm
Location: Curitiba / BRAZIL

  • Quote

Post by Nemein » Sun Jun 05, 2005 3:24 pm

What Gentoonie said could be very true, as previous versions of GCC didn't prune older versions as they were emerged. With GCC 3.4.4, it so happens that it prunes any previously used version of GCC before all of the libraries are switched. Good call Gentoonie. Oh, and thx chrisaw, you saved my install of Gentoo ;) Thanks a lot for sharing the info on the fix m8.
Gentoo 2004.3 / Gentoo-dev-sources 2.6.11-r4
Stage 1 on Stage 3 NPTL Install + Emerge wrapper that builds toolkits the right way
Top
Post Reply

34 posts
  • 1
  • 2
  • Next

Return to “Documentation, Tips & Tricks”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Authors
Gentoo is a trademark of the Gentoo Foundation, Inc. and of Förderverein Gentoo e.V.
The contents of this document, unless otherwise expressly stated, are licensed under the CC-BY-SA-4.0 license.
The Gentoo Name and Logo Usage Guidelines apply.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy