diff options
author | Steve McIntyre <steve.mcintyre@linaro.org> | 2012-11-19 01:12:53 -0500 |
---|---|---|
committer | Carlos O'Donell <carlos@systemhalted.org> | 2012-11-19 01:12:53 -0500 |
commit | 6665d4a25da6dc1788010466f6f52e1df94a048b (patch) | |
tree | 726feade78221eaa2216546b08e3120433861402 /elf | |
parent | 6e63f4ff608820fa9247c1bbafc95dffbcbc0466 (diff) | |
download | glibc-6665d4a25da6dc1788010466f6f52e1df94a048b.zip glibc-6665d4a25da6dc1788010466f6f52e1df94a048b.tar.gz glibc-6665d4a25da6dc1788010466f6f52e1df94a048b.tar.bz2 |
Add ldconfig cache tag handling for ARM hard-float ABI
* sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
* elf/cache.c (print_entry): Print ",hard-float" for
FLAG_ARM_LIBHF.
Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org>
Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
Diffstat (limited to 'elf')
-rw-r--r-- | elf/cache.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/elf/cache.c b/elf/cache.c index db8b9fa..3336bab 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2003,2005,2006,2007,2011 Free Software Foundation, Inc. +/* Copyright (C) 1999-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Jaeger <aj@suse.de>, 1999. @@ -94,6 +94,9 @@ print_entry (const char *lib, int flag, unsigned int osversion, case FLAG_X8664_LIBX32: fputs (",x32", stdout); break; + case FLAG_ARM_LIBHF: + fputs (",hard-float", stdout); + break; case 0: break; default: |