Opened 22 years ago

Closed 22 years ago

Last modified 22 years ago

#402 closed defect (duplicate)

Error in glibc-2.2.5 in file errlist.c

Reported by: fcoiffie@… Owned by: lfs-book@…
Priority: normal Milestone:
Component: Book Version: CVS
Severity: normal Keywords:
Cc:

Description

With gcc-3.2 during the Glibc-2.2.5 compilation, there is an error :

"'_old_sys_nerr' must be declared before its definition."

So, the next modification must be done in glibc-2.2.5/sysdeps/unix/sysv/linux/errlist.c :

  • strong_alias (old_sys_nerr, _old_sys_nerr); weak_alias (old_sys_nerr, _old_sys_nerr) compat_symbol (libc, old_sys_nerr, _sys_nerr, GLIBC_2_0); compat_symbol (libc, _old_sys_nerr, sys_nerr, GLIBC_2_0);

+ strong_alias (old_sys_nerr, _old_sys_nerr);

weak_alias (old_sys_errlist, _old_sys_errlist); compat_symbol (libc, old_sys_errlist, _sys_errlist, GLIBC_2_0); compat_symbol (libc, _old_sys_errlist, sys_errlist, GLIBC_2_0);

Change History (1)

comment:1 by gerard@…, 22 years ago

Resolution: duplicate
Status: newclosed

Already being taken care of by Bug #386

* This bug has been marked as a duplicate of 386 *

Note: See TracTickets for help on using tickets.