Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Discussion & Documentation Duplicate Threads
  • Search

[SOLVED] can't find libstdc++ compiling kdevelop

Threads in this read-only forum cover topics discussed elsewhere in other forums.
Post Reply
Advanced search
14 posts • Page 1 of 1
Author
Message
Black Imp
Apprentice
Apprentice
User avatar
Posts: 168
Joined: Sat Oct 09, 2004 3:28 am

[SOLVED] can't find libstdc++ compiling kdevelop

  • Quote

Post by Black Imp » Thu Jan 20, 2005 1:40 am

After installing gentoo by live 2004.3 with X and kde provided on the second cd, i entered: emerge --sync and after that I tried to emerge kdevelop.
after a lot of files compiled it stops with an error: it can't find libstdc++. it searches for it in the wrong path /usr/lib/gcc-lib/i386-pc-linux-gnu/3.3.4/libstdc++.la while the file actually is in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/libstdc++.la

i correctly set inside /ect/make.conf file the variable CHOST="i686-pc-linux-gnu" so I can't figure out why compiling kdevelop it searches for standard c++ library in the wrong place.

:(

any hint?
Last edited by Black Imp on Fri Jan 21, 2005 9:47 am, edited 1 time in total.
Top
nivron
n00b
n00b
User avatar
Posts: 16
Joined: Sat Jan 15, 2005 3:27 am
Location: Ocala, FL

  • Quote

Post by nivron » Thu Jan 20, 2005 2:03 am

I haven't personally run into this particular problem.

However, fix_libtool_files.sh may be what you need.
Note that if only the CHOST and not the version changed, you can run
it with the current version and the '--oldarch <old-CHOST>' arguments,
and it will do the expected:

# fix_libtool_files.sh `gcc -dumpversion` --oldarch i586-pc-linux-gnu
In your case, try fix_libtool_files.sh 3.3.4 --oldarch i386-pc-linux-gnu and see how it works.

EDIT: If you continue to have problems after running the fix_libtool_files script, try

Code: Select all

emerge libtool
Top
Black Imp
Apprentice
Apprentice
User avatar
Posts: 168
Joined: Sat Oct 09, 2004 3:28 am

  • Quote

Post by Black Imp » Thu Jan 20, 2005 12:11 pm

thanx!! I'll try...
Top
Black Imp
Apprentice
Apprentice
User avatar
Posts: 168
Joined: Sat Oct 09, 2004 3:28 am

  • Quote

Post by Black Imp » Fri Jan 21, 2005 9:49 am

thank you!! the first one worked :)
Top
nivron
n00b
n00b
User avatar
Posts: 16
Joined: Sat Jan 15, 2005 3:27 am
Location: Ocala, FL

  • Quote

Post by nivron » Fri Jan 21, 2005 2:54 pm

Great! Glad to see that it helped.
Black Imp wrote:thank you!! the first one worked :)
Top
chuck_notorious
n00b
n00b
User avatar
Posts: 4
Joined: Sat Dec 11, 2004 3:34 am
Contact:
Contact chuck_notorious
Website

  • Quote

Post by chuck_notorious » Wed Jan 26, 2005 11:50 pm

Yay! Thanks guys this fixed my problem too!!
Top
Bigbang
n00b
n00b
User avatar
Posts: 29
Joined: Mon May 24, 2004 3:25 pm
Location: Quebec

  • Quote

Post by Bigbang » Sat Jan 29, 2005 8:44 pm

I have a similar problem:

When I click on the compile button, it says it can't find libstdc++.so.6
The file doesn't exist so that's normal, but how can I get it? I tried fix_libtool_files.sh, emerge libtool, everything

I haven't find the solution in any thread. Help please.
Top
nivron
n00b
n00b
User avatar
Posts: 16
Joined: Sat Jan 15, 2005 3:27 am
Location: Ocala, FL

  • Quote

Post by nivron » Tue Feb 01, 2005 8:10 pm

Bigbang,

Run gcc-config -l as root and make sure you select your current (probably newest) version of gcc. For example, one of my servers shows the following output.

Code: Select all

[1] i686-pc-linux-gnu-3.3.3
[2] i686-pc-linux-gnu-3.4.3 *
[3] i686-pc-linux-gnu-3.4.3-hardened
[4] i686-pc-linux-gnu-3.4.3-hardenednopie
[5] i686-pc-linux-gnu-3.4.3-hardenednossp
If I wanted to change the profile 1, I would type gcc-config 1. The asterisk shows what version your system is currently using.

You may also have to do source /etc/profile after running gcc-config.

Let me know how that works for you.
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

similar problems...

  • Quote

Post by eandry » Wed Feb 02, 2005 6:02 am

I'm having problems where running simple commands that used to work a week ago complain on not finding libraries. I think it may have something to do with my previous intermittent use of emerging binary packages for my arch. I was getting tired of having to compile everything!

Here's some info of the library in question and my compiler config:

Code: Select all

gundam ~ # man find
/usr/bin/gtbl: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
sh: line 1: 22580 Broken pipe             /bin/gunzip -c '/usr/share/man/man1/find.1.gz'
groff: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

Code: Select all

gundam ~ # strace groff
execve("/usr/bin/groff", ["groff"], [/* 42 vars */]) = 0
uname({sys="Linux", node="gundam", ...}) = 0
brk(0)                                  = 0x8059000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=64913, ...}) = 0
mmap2(NULL, 64913, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7fdb000
close(3)                                = 0
open("/lib/tls/i686/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/i686/sse2", 0xbfffeadc) = -1 ENOENT (No such file or directory)
open("/lib/tls/i686/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/i686", 0xbfffeadc)     = -1 ENOENT (No such file or directory)
open("/lib/tls/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/tls/sse2", 0xbfffeadc)     = -1 ENOENT (No such file or directory)
open("/lib/tls/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/tls", 0xbfffeadc)          = -1 ENOENT (No such file or directory)
open("/lib/i686/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/i686/sse2", 0xbfffeadc)    = -1 ENOENT (No such file or directory)
open("/lib/i686/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/i686", 0xbfffeadc)         = -1 ENOENT (No such file or directory)
open("/lib/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/lib/sse2", 0xbfffeadc)         = -1 ENOENT (No such file or directory)
open("/lib/libstdc++.so.6", O_RDONLY)   = -1 ENOENT (No such file or directory)
stat64("/lib", {st_mode=S_IFDIR|0755, st_size=3664, ...}) = 0
open("/usr/lib/tls/i686/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/tls/i686/sse2", 0xbfffeadc) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/i686/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/tls/i686", 0xbfffeadc) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/tls/sse2", 0xbfffeadc) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/tls", {st_mode=S_IFDIR|0755, st_size=48, ...}) = 0
open("/usr/lib/i686/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/i686/sse2", 0xbfffeadc) = -1 ENOENT (No such file or directory)
open("/usr/lib/i686/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/i686", 0xbfffeadc)     = -1 ENOENT (No such file or directory)
open("/usr/lib/sse2/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib/sse2", 0xbfffeadc)     = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=53072, ...}) = 0
writev(2, [{"groff", 5}, {": ", 2}, {"error while loading shared libra"..., 36}, {": ", 2}, {"libstdc++.so.6", 14}, {": ", 2}, {"cannot open shared object file", 30}, {": ", 2}, {"No such file or directory", 25}, {"\n", 1}], 10groff: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
) = 119
exit_group(127)                         = ?

Code: Select all

gundam ~ # find /usr/lib -name "libstdc++.so.6*" -exec ls -al {} \;
lrwxrwxrwx  1 root root 18 Feb  1 21:03 /usr/lib/gcc/i686-pc-linux-gnu/3.4.4/libstdc++.so.6 -> libstdc++.so.6.0.3
-rwxr-xr-x  1 root root 806856 Feb  1 21:03 /usr/lib/gcc/i686-pc-linux-gnu/3.4.4/libstdc++.so.6.0.3
Using advice from this post didn't help either.

And is the version mismatch with gcc related to this problem?

Code: Select all

gundam ~ # gcc -dumpversion
3.4.4

Code: Select all

gundam ~ # gcc-config -l
[1] i686-pc-linux-gnu-3.3.5
[2] i686-pc-linux-gnu-3.3.5-hardened
[3] i686-pc-linux-gnu-3.3.5-hardenednopie
[4] i686-pc-linux-gnu-3.3.5-hardenednossp
[5] i686-pc-linux-gnu-3.4.3 *
[6] i686-pc-linux-gnu-3.4.3-hardened
[7] i686-pc-linux-gnu-3.4.3-hardenednopie
[8] i686-pc-linux-gnu-3.4.3-hardenednossp

Code: Select all

gundam ~ # gcc -v
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.4/specs
Configured with: /var/tmp/portage/gcc-3.4.3-r1/work/gcc-3.4.3/configure --enable-version-specific-runtime-libs --prefix=/usr --bindir=/usr/i686-pc-linux-gnu/gcc-bin/3.4.3 --includedir=/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include --datadir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.3 --mandir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.3/man --infodir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.3/info --with-gxx-include-dir=/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include/g++-v3 --host=i686-pc-linux-gnu --disable-altivec --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-clocale=gnu --with-system-zlib --disable-checking --disable-werror --disable-libunwind-exceptions --enable-shared --enable-threads=posix --disable-multilib --enable-java-awt=gtk --enable-languages=c,c++,f77,objc,java
Thread model: posix
gcc version 3.4.4 20041125 (Gentoo Linux 3.4.3-r1, ssp-3.4.3-0, pie-8.7.7)

Code: Select all

gundam ~ # emerge info
Portage 2.0.51-r15 (default-linux/x86/2004.3, gcc-3.4.3, glibc-2.3.4.20041102-r0, 2.6.10-gentoo-r6 i686)
=================================================================
System uname: 2.6.10-gentoo-r6 i686 Intel(R) Pentium(R) 4 CPU 2.20GHz
Gentoo Base System version 1.6.9
Python:              dev-lang/python-2.3.4 [2.3.4 (#1, Feb  1 2005, 19:51:38)]
dev-lang/python:     2.3.4
sys-devel/autoconf:  2.59-r6, 2.13
sys-devel/automake:  1.7.9-r1, 1.8.5-r3, 1.5, 1.4_p6, 1.6.3, 1.9.4
sys-devel/binutils:  2.15.92.0.2-r2
sys-devel/libtool:   1.5.10-r4
virtual/os-headers:  2.4.22
ACCEPT_KEYWORDS="x86 ~x86"
AUTOCLEAN="yes"
CFLAGS="-O2 -march=pentium4 -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.3/env /usr/kde/3.3/share/config /usr/kde/3.3/shutdown /usr/kde/3/share/config /usr/lib/X11/xkb /usr/share/config /usr/share/texmf/dvipdfm/config/ /usr/share/texmf/dvips/config/ /usr/share/texmf/tex/generic/config/ /usr/share/texmf/tex/platex/config/ /usr/share/texmf/xdvi/ /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=pentium4 -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoaddcvs autoconfig ccache distlocks sandbox sfperms"
GENTOO_MIRRORS="http://gentoo.chem.wisc.edu/gentoo http://mirrors.tds.net/gentoo ftp://mirrors.tds.net/gentoo http://mirror.datapipe.net/gentoo http://mirror.datapipe.net/gentoo http://www.gigaload.org/gentoo.org/"
MAKEOPTS="-j2"
PKGDIR="/mnt/cdrom"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow 3dnowex X X509 a52 aac acpi acpi4linux aim alsa apache2 apm arts asm avi bash-completion berkdb bitmap-fonts blender-game bmp bzip2 canna cdda cddb cdr codecs cross crypt cups curl dga dhcp dio directfb divx4linux dmx dv dvd dvdr dvdread emacs encode esd etwin evo2 exif f77 fam fame fb fbcon firebird flac fmod font-server foomaticdb fortran freetds freetype freewnn gcj gdbm ggi gif gimp gimpprint gkrellm gmail gnokii gnome gnustep gphoto2 gpm gsnd gstreamer gtk gtk2 hal http httpd i8x0 idn ieee1394 imlib imlib2 ipv6 j2ee jabber jack java javacomm javamail jboss jce jikes jms jmx joystick jpeg junit jython kerberos ldap libg++ libwww lm_sensors ltsp mad make-busybox-symlinks maps matroska mikmod mime mixer mjpeg mmx mmx2 mozcalendar mozdevelop mozilla mozp3p mozxmlterm mp3 mpeg mpeg4 msn mysql mysqli ncurses network nls oav objc offensive ogg oggvorbis openal opengl oscar oss pam pcmcia pda pdflib perl php physfs png pnp portaudio posix profile python qt quicktime radeon rdesktop readline real ruby samba scanner sdl servlet-2.4 soap sockets source spell sse sse2 ssl stencil-buffer stream struts svg svga tcpd tetex threads tidy tiff transcode truetype truetype-fonts trusted type1-fonts usb v4l v4l2 vcd vcdimager vdesktop videos virus-scan wddx wifi wma123 wmf xanim xine xml2 xmlrpc xmms xosd xprint xrandr xsl xslt xv xvid xvmc yahoo zlib video_cards_radeon"
Unset:  ASFLAGS, CBUILD, CTARGET, LANG, LC_ALL, LDFLAGS, PORTDIR_OVERLAY
Can anyone give me some direction with what I've posted other than starting from scratch?
Top
sonf
n00b
n00b
Posts: 2
Joined: Thu Nov 18, 2004 7:25 am

  • Quote

Post by sonf » Wed Feb 02, 2005 7:31 am

There is a missing line in the gcc 3.4.3-r1 ebuild file.
http://bugs.gentoo.org/show_bug.cgi?id=80412
Top
cpdsaorg
Guru
Guru
User avatar
Posts: 359
Joined: Thu Oct 16, 2003 9:41 am

  • Quote

Post by cpdsaorg » Wed Feb 02, 2005 1:51 pm

to fix the problem it looks like they back revised that version of gcc to an earlier one. if you run emerge sync && emerge -upvD world you shoule see what i am talking about.
PentiumM 2.0 GHz, MSI 915GM Speedster-FA4, Seagate ST3500641AS SATA 400GB
Top
eandry
n00b
n00b
User avatar
Posts: 50
Joined: Mon Nov 15, 2004 1:20 am

  • Quote

Post by eandry » Wed Feb 02, 2005 2:40 pm

Did what you said. Ran 'emerge sync' then 'emerge -upvD world'. I don't see what your talking about. But maybe you weren't addressing my problem...

Code: Select all

gundam ~ # emerge -upvD world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!
[blocks B     ] sys-kernel/linux-headers (from pkg sys-kernel/linux26-headers-2.6.8.1-r2)
[ebuild  N    ] media-plugins/alsa-jack-1.0.8  0 kB
[ebuild     U ] sys-apps/pciutils-2.1.11-r4 [2.1.11-r3] -debug 0 kB
[ebuild     U ] x11-libs/openmotif-2.2.3 [2.1.30-r6] -debug 5,029 kB
[ebuild     U ] dev-lang/nasm-0.98.39 [0.98.38-r1] -build -doc 531 kB
[ebuild  N    ] dev-perl/Convert-ASN1-0.18  58 kB
[ebuild  N    ] dev-perl/URI-1.35  93 kB
[ebuild  N    ] dev-perl/Net-SSLeay-1.25  75 kB
[ebuild  N    ] dev-perl/IO-Socket-SSL-0.96  31 kB
[ebuild  N    ] dev-perl/perl-ldap-0.3202  -sasl +ssl -xml 221 kB
[ebuild  N    ] dev-perl/Digest-MD4-1.3  28 kB
[ebuild  N    ] dev-perl/Crypt-SmbHash-0.12  8 kB
[ebuild     U ] x11-libs/qt-3.3.4-r1 [3.3.3-r3] +cups -debug -doc +firebird +gif -immqt -immqt-bc +ipv6 +mysql -nas -odbc +opengl -postgres -sqlite -xinerama +zlib 14,101 kB
[ebuild  N    ] media-libs/bio2jack-0.4  -static 466 kB
[ebuild  N    ] media-plugins/xmms-jack-0.11  747 kB
[ebuild  N    ] media-libs/t1lib-5.0.2  +X -debug -doc 1,657 kB
[ebuild  NS   ] media-libs/freetype-1.3.1-r4  +nls +tetex 1,919 kB
[ebuild  N    ] app-text/htmltidy-4.8.6  -debug -doc -xml 387 kB
[ebuild  N    ] dev-php/php-5.0.3  -adabas -bcmath +berkdb -birdstep -bzlib -calendar -cdb -cpdflib +crypt -ctype +curl -curlwrappers -db2 -dba -dbase -dbm -dbmaker -dbx -debug +dio -empress -empress-bcs -esoob +exif +fam -fdftk -filepro -flatfile -frontbase -ftp -gd -gd-external +gdbm -gmp -hyperwave-api -iconv -imap -informix -ingres -inifile -interbase -iodbc +jpeg +kerberos +ldap -libedit -mcve -memlimit -mhash +mime -ming -mnogosearch -msession -msql -mssql +mysql +mysqli +ncurses -nis +nls -oci8 -odbc -oracle7 -ovrimos -pcntl -pcre -pfpro +png +posix -postgres -qdbm +readline -recode -sapdb -sasl -session -shared -sharedmem -simplexml -snmp +soap +sockets -solid +spell -spl -sqlite +ssl -sybase -sybase-ct -sysvipc +tidy +tiff -tokenizer +truetype +wddx +xml2 +xmlrpc -xpm +xsl +zlib 4,499 kB
[ebuild  N    ] dev-lang/swig-1.3.21  -debug -guile +java +perl +php +python +ruby -tcltk 1,975 kB
[ebuild  N    ] sys-libs/libcap-1.10-r4  -debug -pic +python -static 38 kB
[ebuild  N    ] dev-python/pyrex-0.9.3-r1  171 kB
[ebuild  N    ] sys-apps/dbus-0.23-r1  +X -debug +gtk -mono +python +qt +xml2 1,250 kB
[ebuild  N    ] sys-kernel/linux26-headers-2.6.8.1-r2  -build 34,870 kB
[ebuild  N    ] sys-apps/hal-0.4.5-r2  -debug -doc +pcmcia 1,311 kB
[ebuild  N    ] x11-libs/fltk-1.1.4  -debug -nptl +opengl 1,275 kB
[ebuild     U ] media-fonts/artwiz-fonts-2.4-r1 [2.4] 0 kB
[ebuild     U ] app-text/opensp-1.5.1 [1.5-r1] +nls 1,385 kB
[ebuild     U ] app-text/docbook-xml-simple-dtd-4.1.2.4-r2 [4.1.2.4] 34 kB
[ebuild  NS   ] app-text/docbook-xml-simple-dtd-1.0  30 kB
[ebuild     U ] app-text/docbook-xsl-stylesheets-1.66.1 [1.65.1] 1,514 kB
[ebuild     U ] app-text/docbook-sgml-utils-0.6.14 [0.6.12] +tetex* 122 kB
[ebuild     U ] app-admin/metalog-0.8_rc1 [0.8_pre20031130] 118 kB
[ebuild     U ] media-libs/win32codecs-20050115 [20040916-r1] +quicktime +real 12,288 kB
[ebuild     U ] media-libs/libdvdread-0.9.4-r1 [0.9.4] -static 257 kB
[ebuild     U ] media-libs/libao-0.8.6 [0.8.5] +alsa* +arts +esd -mmap -nas -static 378 kB

Total size of downloads: 86,881 kB
Should I let it go and update everything? I'm still concerned about the gcc version mismatch and the missing libstdc++.so.6 link.

I could manually create a /usr/lib/libstdc++.so.6 so it points to the correct library. But I'm more concerned as to why the problem occured in the first place. I've never had to muck around in the /lib and /usr/lib directories.
Top
30726
Veteran
Veteran
Posts: 1501
Joined: Wed Sep 24, 2003 11:01 pm

  • Quote

Post by 30726 » Wed Feb 02, 2005 2:42 pm

eandry:
http://forums.gentoo.org/viewtopic.php?t=279020
Top
masseya
Bodhisattva
Bodhisattva
User avatar
Posts: 2602
Joined: Wed Apr 17, 2002 3:56 pm
Location: Baltimore, MD
Contact:
Contact masseya
Website

  • Quote

Post by masseya » Wed Feb 02, 2005 4:28 pm

Moved from Portage and Programming. See also: Problems after upgrade gcc to 3.3.5 (solution)
if i never try anything, i never learn anything..
if i never take a risk, i stay where i am..
Top
Post Reply

14 posts • Page 1 of 1

Return to “Duplicate Threads”

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 Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy