Update.
2002-04-08 Andreas Jaeger <aj@suse.de> * elf/cache.c (print_entry): Support x86-64.
This commit is contained in:
parent
82b610ba7c
commit
fdedb42e5a
@ -1,3 +1,7 @@
|
|||||||
|
2002-04-08 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* elf/cache.c (print_entry): Support x86-64.
|
||||||
|
|
||||||
2002-04-08 Ulrich Drepper <drepper@redhat.com>
|
2002-04-08 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* Makeconfig (CPPFLAGS): Also add CPPFLAGS-<basename> where <basename>
|
* Makeconfig (CPPFLAGS): Also add CPPFLAGS-<basename> where <basename>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Andreas Jaeger <aj@suse.de>, 1999.
|
Contributed by Andreas Jaeger <aj@suse.de>, 1999.
|
||||||
|
|
||||||
@ -78,6 +78,12 @@ print_entry (const char *lib, int flag, unsigned int osversion,
|
|||||||
#if defined __ia64__ || defined __i386__
|
#if defined __ia64__ || defined __i386__
|
||||||
case FLAG_IA64_LIB64:
|
case FLAG_IA64_LIB64:
|
||||||
fputs (",IA-64", stdout);
|
fputs (",IA-64", stdout);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#if defined __x86_64__ || defined __i386__
|
||||||
|
case FLAG_X8664_LIB64:
|
||||||
|
fputs (",x86-64", stdout);
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if defined __s390__ || defined __s390x__
|
#if defined __s390__ || defined __s390x__
|
||||||
case FLAG_S390_LIB64:
|
case FLAG_S390_LIB64:
|
||||||
|
Loading…
Reference in New Issue
Block a user