diff options
author | Steve McIntyre <steve.mcintyre@linaro.org> | 2012-11-19 01:22:33 -0500 |
---|---|---|
committer | Carlos O'Donell <carlos@systemhalted.org> | 2012-11-19 01:22:33 -0500 |
commit | 1f51ee9246b048d8966c36ddd2c26d7e0f927d83 (patch) | |
tree | 9cec26aa373eb0bdd0f8cffbfe5b109d90f4a6a2 /sysdeps/generic | |
parent | 6665d4a25da6dc1788010466f6f52e1df94a048b (diff) | |
download | glibc-1f51ee9246b048d8966c36ddd2c26d7e0f927d83.tar.gz glibc-1f51ee9246b048d8966c36ddd2c26d7e0f927d83.tar.xz glibc-1f51ee9246b048d8966c36ddd2c26d7e0f927d83.zip |
Add ldconfig cache tag handling for AArch64
* sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro. * elf/cache.c (print_entry): Print ",AArch64" for FLAG_AARCH64_LIB64. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org> Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/ldconfig.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/generic/ldconfig.h b/sysdeps/generic/ldconfig.h index a805284d59..43cb9bdb0c 100644 --- a/sysdeps/generic/ldconfig.h +++ b/sysdeps/generic/ldconfig.h @@ -35,6 +35,7 @@ #define FLAG_MIPS64_LIBN64 0x0700 #define FLAG_X8664_LIBX32 0x0800 #define FLAG_ARM_LIBHF 0x0900 +#define FLAG_AARCH64_LIB64 0x0a00 /* Name of auxiliary cache. */ #define _PATH_LDCONFIG_AUX_CACHE "/var/cache/ldconfig/aux-cache" |