Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2010-03-06 00:04:59 +0300
committerRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2010-03-06 00:04:59 +0300
commitc2fd0c7c03c02e4b9c5bc9e6d6c0da5248778a16 (patch)
tree495984a40c706d9cc2e7b0027db6b09f3bc87a4d /include/elf/common.h
parentd909dd6c42b01333660922d8967aa9569abfbb68 (diff)
include:
* elf/common.h (VER_FLG_*): Document. (VER_FLG_INFO): Define. gold: * dynobj.h (Verdef::Verdef): Add is_info arg, is_info member function, is_info_ member. * dynobj.cc (Verdef::write): Set VER_FLG_INFO if this->is_info_. (Versions::Versions): Update caller. (Versions::define_base_version): Likewise. (Versions::add_def): Likewise. elfcpp: * elfcpp.h (VER_FLG_INFO): Define. binutils: * readelf.c (get_ver_flags): Handle VER_FLG_INFO.
Diffstat (limited to 'include/elf/common.h')
-rw-r--r--include/elf/common.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/elf/common.h b/include/elf/common.h
index e7ffac4b7..6bad0d93c 100644
--- a/include/elf/common.h
+++ b/include/elf/common.h
@@ -812,10 +812,16 @@
#define VER_DEF_CURRENT 1
/* These constants appear in the vd_flags field of a Elf32_Verdef
- structure. */
+ structure.
+
+ Cf. the Solaris Linker and Libraries Guide, Ch. 7, Object File Format,
+ Versioning Sections, for a description:
+
+ http://docs.sun.com/app/docs/doc/819-0690/chapter6-93046?l=en&a=view */
#define VER_FLG_BASE 0x1
#define VER_FLG_WEAK 0x2
+#define VER_FLG_INFO 0x4
/* These special constants can be found in an Elf32_Versym field. */