Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Fehler beim Bootstrappen
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
Gags666
Tux's lil' helper
Tux's lil' helper


Joined: 18 Jun 2004
Posts: 89

PostPosted: Fri Jun 18, 2004 10:56 am    Post subject: Fehler beim Bootstrappen Reply with quote

Hi, ich bin der Neue! :D

Ich habe mich heute mal an eine Gentoo-Stage1-Installation gewagt und alles so gemacht, wie es in der offiziellen Dokumentation beschrieben wird. Leider bricht das bootstrap-Script aber mit folgendem Fehler ab:
Code:
checking host system type... i686-pc-linux-gnu
configure: creating ./config.status
config.status: creating Makefile
configure: configuring in autoconf-lib-link
configure: running /bin/sh './configure' --prefix=/usr  '--prefix=/usr' '--host=i686-pc-linux-gnu' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--datadir=/usr/share' '--sysconfdir=/etc' '--localstatedir=/var/lib' '--disable-shared' '--with-included-gettext' 'CC=gcc' 'CFLAGS=-march=athlon-xp -O3 -pipe -fromit-frame-pointer' 'CXXFLAGS=-march=athlon-xp -O3 -pipe -fromit-frame-pointer' 'CXX=gcc' 'host_alias=i686-pc-linux-gnu' --cache-file=/dev/null --srcdir=.
configure: WARNING: If you wanted to set the --build type, don't use --host.
    If a cross compiler is detected then cross compile mode will be used.
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for i686-pc-linux-gnu-strip... no
checking for strip... strip
checking for i686-pc-linux-gnu-gcc... gcc
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
configure: error: /bin/sh './configure' failed for autoconf-lib-link

!!! ERROR: sys-devel/gettext-0.12.1 failed.
!!! Function econf, Line 365, Exitcode 1
!!! econf failed


Ich hätte auch gerne den Inhalt der beschriebenen "config.log" gepostet, aber ich weiss nicht, wo ich diese Datei finde.

Hier noch der Inhalt meiner make.conf:
Code:
CFLAGS="-march=athlon-xp -O3 -pipe -fromit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j2"
USE="-* x86 java nls 3dnow mmx sse"
GENTOO_MIRRORS="ftp:///ftp-stud.fht-esslingen.de/pub/Mirrors/gentoo/ ftp://mirrors.sec.informatik.tu-darmstadt.de/gentoo/ http://ftp-stud.fht-esslingen.de/pub/Mirrors/gentoo/ http://mirrors.sec.informatik.tu-darmstadt.de/gentoo/"


Meine USE-Flags habe ich anhand dieses Threads aus linuxforen.de erstellt: http://www.linuxforen.de/forums/showthread.php?t=107013
Ich habe auch schon Beispiel-USE-Flags aus der offiziellen Dokumentation verwendet und es auch schon ganz ohne versucht (dann werden die Standard-Flags verwendet, oder?) - immer mit dem gleichen Ergebnis. bootstrap.sh -f habe ich ebenfalls erneut ausgeführt, da ich dachte, dass es vielleicht daran liegt, aber es kommt immer aufs Gleiche raus. :(

Ich verwende für die Installation Gentoo 2004.1 über eine minimale LiveCD.

Könnt ihr mir weiterhelfen? :(
Back to top
View user's profile Send private message
Spooky85
n00b
n00b


Joined: 15 Jun 2004
Posts: 25
Location: Germany,Ruhrpott

PostPosted: Fri Jun 18, 2004 10:37 pm    Post subject: Reply with quote

USE="-X" bootstrap.sh -f
;)
das muesste klappen und spaeter duerfte X zu keinem fehler mehr fuehren....
also meine useflags sind so deklariert:
Quote:
USE="X aalib acpi alsa arts atlas audiofile avi cdr crypt divx4linux doc dvd dvdr emacs ethereal firebird flash gd ggi gif gtk gtk2 icq imlib -ipv6 -java jpeg kde libg++ libwww mad mozilla mpeg ncurses opengl pcmcia pcre pda perl pdflib png pnp python qt quicktime readline sdl unicode usb videos xmms xml xml2 xv xvid zlib"

und halt beim bootstrappen -X und
Quote:
CFLAGS="-march=athlon-xp -O3 -pipe"

ich hoffe es hilft dir ;)


Last edited by Spooky85 on Sun Jun 20, 2004 12:30 pm; edited 1 time in total
Back to top
View user's profile Send private message
Gags666
Tux's lil' helper
Tux's lil' helper


Joined: 18 Jun 2004
Posts: 89

PostPosted: Sun Jun 20, 2004 12:27 pm    Post subject: Reply with quote

Danke für den Tipp! Werde es im Laufe der Woche nochmal versuchen und dann Rückmeldung geben.
Back to top
View user's profile Send private message
makukasutota
Apprentice
Apprentice


Joined: 18 Oct 2003
Posts: 251
Location: DE, Lower Saxony

PostPosted: Sun Jun 20, 2004 12:40 pm    Post subject: Reply with quote

Zu deinen CFLAGS: -march=athlon-xp -O3 -pipe -fromit-frame-pointer.
Erstmal heißt es -fomit-frame-pointer. Dann ist -O3 zu agressiv, -O2 ist besser.

Zu guter letzt meine eigenen CFLAGS die bei mir ohne Probs laufen:
-march=athlon-xp -O2 -pipe -fomit-frame-pointer -mmmx -msse -m3dnow -mfpmath=sse

mfg,
marc
_________________
Bye, mkasu
Back to top
View user's profile Send private message
zouk
Tux's lil' helper
Tux's lil' helper


Joined: 09 Mar 2004
Posts: 114

PostPosted: Sun Jun 20, 2004 12:46 pm    Post subject: Re: Fehler beim Bootstrappen Reply with quote

Gags666 wrote:

Code:
checking for C compiler default output... configure: error: C compiler cannot create executables

Code:
CFLAGS="-march=athlon-xp -O3 -pipe -fromit-frame-pointer"

Eindeutig C-Compiler Problem: es heißt -fomit-frame-pointer und nicht -fromit-frame-pointer

gruß
zouk

edit: Mann, da ließt man erst beim drittern mal das 'fromit' und dann ist auch noch einer schneller :-\
Back to top
View user's profile Send private message
Gags666
Tux's lil' helper
Tux's lil' helper


Joined: 18 Jun 2004
Posts: 89

PostPosted: Sun Jun 20, 2004 9:23 pm    Post subject: Reply with quote

Och nee... lol... wenn's das wirklich war, häng ich mich auf! :D Danke schonmal - evtl. komm ich morgen dazu, es nochmal zu versuchen. Das kommt davon, wenn man nicht Copy&Paste macht, um sich die Befehle und Einträge besser einprägen zu können. ;)
Back to top
View user's profile Send private message
Gags666
Tux's lil' helper
Tux's lil' helper


Joined: 18 Jun 2004
Posts: 89

PostPosted: Mon Jun 21, 2004 10:45 am    Post subject: Reply with quote

Juhu! Es geht! Vielen, vielen Dank!
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