LFS glibc Prblem

M

m3rowinger

Hi Leute,
ich bin grade dabei lfs zu basteln und habe
beim Erstellen von glibc 2.3.6 folgenden Fehler erhalten:

In file included from version.c:33:
/LINUX_FROM_SCATCH/glibc-2.3.6/objdir/csu/version-info.h:2: error: missing terminating " character
/LINUX_FROM_SCATCH/glibc-2.3.6/objdir/csu/version-info.h:3: error: missing terminating " character
/LINUX_FROM_SCATCH/glibc-2.3.6/objdir/csu/version-info.h:4: error: expected ‘,’ or ‘;’ before string constant
make[2]: *** [/LINUX_FROM_SCATCH/glibc-2.3.6/objdir/csu/version.o] Fehler 1
make[2]: Verlasse Verzeichnis '/LINUX_FROM_SCATCH/glibc-2.3.6/csu'
make[1]: *** [csu/subdir_lib] Fehler 2
make[1]: Verlasse Verzeichnis '/LINUX_FROM_SCATCH/glibc-2.3.6'
make: *** [all] Fehler 2

Das ist der Quellcode von version.c :
Code:
#include "version.h"
#include <tls.h>
#include <gnu/libc-version.h>

static const char __libc_release[] = RELEASE;
static const char __libc_version[] = VERSION;

static const char banner[] =
"GNU C Library "RELEASE" release version "VERSION", by Roland McGrath et al.\n\
Copyright (C) 2005 Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions.\n\
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n\
PARTICULAR PURPOSE.\n\
Compiled by GNU CC version "__VERSION__".\n"
#include "version-info.h"
#ifdef GLIBC_OLDEST_ABI
"The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n"
#endif
#ifdef USE_TLS
"Thread-local storage support included.\n"
#endif
"For bug reporting instructions, please see:\n\
<http://www.gnu.org/software/libc/bugs.html>.\n";

#include <unistd.h>

extern void __libc_print_version (void);
void
__libc_print_version (void)
{
  __write (STDOUT_FILENO, banner, sizeof banner - 1);
}

extern const char *__gnu_get_libc_release (void);
const char *
__gnu_get_libc_release (void)
{
  return __libc_release;
}
weak_alias (__gnu_get_libc_release, gnu_get_libc_release)

extern const char *__gnu_get_libc_version (void);
const char *
__gnu_get_libc_version (void)
{
  return __libc_version;
}
weak_alias (__gnu_get_libc_version, gnu_get_libc_version)

#ifdef HAVE_ELF
/* This function is the entry point for the shared object.
   Running the library as a program will get here.  */

extern void __libc_main (void) __attribute__ ((noreturn));
void
__libc_main (void)
{
  __libc_print_version ();
  _exit (0);
}
#endif

Bitte um Hilfe
 

Ähnliche Themen

Windows clients können nicht mehr auf lange laufendes System zugreifen

dovecot und postfix Konfiguration Problem

windows schneller als linux stdlib ...

Debian squeeze, Webmin, Samba Freigaben

NagiosGrapher 1.7.1 funktioniert nicht

Zurück
Oben