2012-08-07 16 views
6

Der folgende Fehler trat auf, wenn ich glibc-2.14.1 für LFS 7.1 'machte'. Ich benutze Ubuntu als Host-Betriebssystem.Glibc-Fehler beim Erstellen von Linux von Grund auf neu

gcc ../sysdeps/unix/sysv/linux/syslog.c -c -std=gnu99 -fgnu89-inline -O2 -Wall -Winline 
-Wwrite-strings -fmerge-all-constants -g -Wstrict-prototypes -mpreferred-stack- 
boundary=2 -Wa,-mtune=i686 -fexceptions -I../include -I/mnt/lfs/sources/glibc- 
build/misc -I/mnt/lfs/sources/glibc-build -I../sysdeps/i386/elf - 
I../nptl/sysdeps/unix/sysv/linux/i386/i686 -I../sysdeps/unix/sysv/linux/i386/i686 - 
I../nptl/sysdeps/unix/sysv/linux/i386 -I../sysdeps/unix/sysv/linux/i386 - 
I../nptl/sysdeps/unix/sysv/linux -I../nptl/sysdeps/pthread -I../sysdeps/pthread - 
I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common - 
I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv/i386 - 
I../nptl/sysdeps/unix/sysv -I../sysdeps/unix/sysv -I../sysdeps/unix/i386 - 
I../nptl/sysdeps/unix -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/i386/i686/fpu - 
I../sysdeps/i386/i686/multiarch -I../nptl/sysdeps/i386/i686 -I../sysdeps/i386/i686 - 
I../sysdeps/i386/i486 -I../nptl/sysdeps/i386/i486 -I../sysdeps/i386/fpu - 
I../nptl/sysdeps/i386 -I../sysdeps/i386 -I../sysdeps/wordsize-32 - 
I../sysdeps/ieee754/ldbl-96 -I../sysdeps/ieee754/dbl-64 -I../sysdeps/ieee754/flt-32 - 
I../sysdeps/ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic -I../nptl -I.. - 
I../libio -I. -nostdinc -isystem /usr/lib/gcc/i686-linux-gnu/4.6/include -isystem 
/usr/lib/gcc/i686-linux-gnu/4.6/include-fixed -isystem /tools/include -D_LIBC_REENTRANT 
-include ../include/libc-symbols.h  -o /mnt/lfs/sources/glibc-build/misc/syslog.o 
-MD -MP -MF /mnt/lfs/sources/glibc-build/misc/syslog.o.dt -MT /mnt/lfs/sources/glibc- 
build/misc/syslog.o 
In file included from ../sysdeps/unix/sysv/linux/syslog.c:10:0: 
../misc/syslog.c: In function '__vsyslog_chk': 
../misc/syslog.c:144:9: warning: variable 'prioff' set but not used [-Wunused-but-set- 
variable] 
../misc/syslog.c:123:1: sorry, unimplemented: inlining failed in call to 'syslog': 
function body not available 
../misc/syslog.c:155:9: sorry, unimplemented: called from here 
make[2]: *** [/mnt/lfs/sources/glibc-build/misc/syslog.o] Error 1 
make[2]: Leaving directory `/mnt/lfs/sources/glibc-2.14.1/misc' 
make[1]: *** [misc/subdir_lib] Error 2 
make[1]: Leaving directory `/mnt/lfs/sources/glibc-2.14.1' 
make: *** [all] Error 2 

Kann mir jemand sagen, was ich tun soll?

Antwort

1

@avinash - versuchen Sie die folgende ...

1) re-run configure ... CFLAGS = "- O2 -U_FORTIFY_SOURCE" configure
2) re-run machen ... CFLAGS = "- O2 -U_FORTIFY_SOURCE" machen

4

Für glibc 2.15, hatte ich wie ks1322 zu tun:

$ ../glibc2.15/configure CFLAGS="-O2 -U_FORTIFY_SOURCE -fno-stack-protector" $ make

Die -O2 benötigt wird, um die Standard-Optimierung zu erholen, erforderlich, um eine Anzahl von Fehlern zu vermeiden.

Die -U_FORTIFY_SOURCE erforderlich Ausfall gcc ../sysdeps/unix/sysv/linux/syslog.c (In function ‘__vsyslog_chk’: [...] inlining failed in call to ‘syslog’)

Die -fno-stack-protector ist zu vermeiden erforderlich Ausfall gcc [...] elf/dl-allobjs.os libc_pic.a ((init-first.os):(.data+0x0): multiple definition of '__libc_multiple_libcs') zu vermeiden.

Mit diesen CFLAGS bekomme ich nur eine Warnung (errlist.c count 133 inflated to GLIBC_2.12 count 134 (old errno.h?)).

P.S. Es ist auch sehr wichtig, nicht verwenden Sie die gold Linker (ld.gold, aus dem binutils-gold Paket), weil libc 's config wird es ablehnen. Dies ist leicht durch Ändern der symbolischen Verbindung /usr/bin/ld von ld.gold zu ld.bfd möglich.

+0

Vielen Dank für diese klare Erklärung. –

Verwandte Themen