From fdedb42e5a5a8c1d639892ec29247c994fb89493 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 8 Apr 2002 15:21:19 +0000 Subject: [PATCH] Update. 2002-04-08 Andreas Jaeger * elf/cache.c (print_entry): Support x86-64. --- ChangeLog | 4 ++++ elf/cache.c | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a88983f..b083a77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-04-08 Andreas Jaeger + + * elf/cache.c (print_entry): Support x86-64. + 2002-04-08 Ulrich Drepper * Makeconfig (CPPFLAGS): Also add CPPFLAGS- where diff --git a/elf/cache.c b/elf/cache.c index 36c3688..1977ce1 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -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. Contributed by Andreas Jaeger , 1999. @@ -78,6 +78,12 @@ print_entry (const char *lib, int flag, unsigned int osversion, #if defined __ia64__ || defined __i386__ case FLAG_IA64_LIB64: fputs (",IA-64", stdout); + break; +#endif +#if defined __x86_64__ || defined __i386__ + case FLAG_X8664_LIB64: + fputs (",x86-64", stdout); + break; #endif #if defined __s390__ || defined __s390x__ case FLAG_S390_LIB64: -- 2.7.4