diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-15 11:44:58 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-15 11:44:58 -0700 |
commit | 92ad15a8f1d3e65f20fda3265c04ff26a642a2d0 (patch) | |
tree | 93c8c2a25e18b5d8fe583b0a1f0679278ce481ca /csu | |
parent | 94db8db8e80d8b7fe094dee92660c158bf62d732 (diff) | |
download | glibc-92ad15a8f1d3e65f20fda3265c04ff26a642a2d0.tar glibc-92ad15a8f1d3e65f20fda3265c04ff26a642a2d0.tar.gz glibc-92ad15a8f1d3e65f20fda3265c04ff26a642a2d0.tar.bz2 glibc-92ad15a8f1d3e65f20fda3265c04ff26a642a2d0.zip |
Implement handling of libc ABI in ELF header.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/version.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/csu/version.c b/csu/version.c index db913be800..8e32f312a9 100644 --- a/csu/version.c +++ b/csu/version.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992-2008, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1992-2008, 2009, 2010 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,7 @@ #include "version.h" #include <tls.h> +#include <libc-abis.h> #include <gnu/libc-version.h> static const char __libc_release[] = RELEASE; @@ -25,12 +26,15 @@ 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) 2009 Free Software Foundation, Inc.\n\ +Copyright (C) 2010 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 LIBC_ABIS_STRING +LIBC_ABIS_STRING +#endif #ifdef GLIBC_OLDEST_ABI "The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n" #endif |