dpkg-gensymbols.1 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. .\" dpkg manual page - dpkg-gensymbols(1)
  2. .\"
  3. .\" Copyright © 2007-2011 Raphaël Hertzog <hertzog@debian.org>
  4. .\" Copyright © 2009-2010 Modestas Vainius <modestas@vainius.eu>
  5. .\"
  6. .\" This is free software; you can redistribute it and/or modify
  7. .\" it under the terms of the GNU General Public License as published by
  8. .\" the Free Software Foundation; either version 2 of the License, or
  9. .\" (at your option) any later version.
  10. .\"
  11. .\" This is distributed in the hope that it will be useful,
  12. .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. .\" GNU General Public License for more details.
  15. .\"
  16. .\" You should have received a copy of the GNU General Public License
  17. .\" along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. .
  19. .TH dpkg\-gensymbols 1 "2012-04-22" "Debian Project" "dpkg utilities"
  20. .SH NAME
  21. dpkg\-gensymbols \- generate symbols files (shared library dependency information)
  22. .
  23. .SH SYNOPSIS
  24. .B dpkg\-gensymbols
  25. .RI [ option ...]
  26. .
  27. .SH DESCRIPTION
  28. .B dpkg\-gensymbols
  29. scans a temporary build tree (debian/tmp by default) looking for libraries
  30. and generates a \fIsymbols\fR file describing them. This file, if
  31. non-empty, is then installed in the DEBIAN subdirectory of the build tree
  32. so that it ends up included in the control information of the package.
  33. .P
  34. When generating those files, it uses as input some symbols files
  35. provided by the maintainer. It looks for the following files (and uses the
  36. first that is found):
  37. .IP \(bu 4
  38. debian/\fIpackage\fR.symbols.\fIarch\fR
  39. .IP \(bu 4
  40. debian/symbols.\fIarch\fR
  41. .IP \(bu 4
  42. debian/\fIpackage\fR.symbols
  43. .IP \(bu 4
  44. debian/symbols
  45. .P
  46. The main interest of those files is to provide the minimal version
  47. associated to each symbol provided by the libraries. Usually it
  48. corresponds to the first version of that package that provided the symbol,
  49. but it can be manually incremented by the maintainer if the ABI of the
  50. symbol is extended without breaking backwards compatibility. It's the
  51. responsibility of the maintainer to keep those files up-to-date and
  52. accurate, but \fBdpkg\-gensymbols\fR helps with that.
  53. .P
  54. When the generated symbols files differ from the maintainer supplied
  55. one, \fBdpkg\-gensymbols\fR will print a diff between the two versions.
  56. Furthermore if the difference is too significant, it will even fail (you
  57. can customize how much difference you can tolerate, see the \fB\-c\fR
  58. option).
  59. .SH MAINTAINING SYMBOLS FILES
  60. The symbols files are really useful only if they reflect the evolution of
  61. the package through several releases. Thus the maintainer has to update
  62. them every time that a new symbol is added so that its associated minimal
  63. version matches reality. To do this properly the diffs contained in the
  64. build logs can be used. In most cases, the diff applies directly to the
  65. debian/\fIpackage\fR.symbols file. That said, further tweaks are usually
  66. needed: it's recommended for example to drop the Debian revision
  67. from the minimal version so that backports with a lower version number
  68. but the same upstream version still satisfy the generated dependencies.
  69. If the Debian revision can't be dropped because the symbol really got
  70. added by the Debian specific change, then one should suffix the version
  71. with "~".
  72. .P
  73. Before applying any patch to the symbols file, the maintainer should
  74. double-check that it's sane. Public symbols are not supposed to disappear,
  75. so the patch should ideally only add new lines.
  76. .P
  77. Note that you can put comments in symbols files: any line with '#' as the
  78. first character is a comment except if it starts with '#include' (see
  79. section \fBUsing includes\fP). Lines starting with '#MISSING:' are special
  80. comments documenting symbols that have disappeared.
  81. .SS Using #PACKAGE# substitution
  82. .P
  83. In some rare cases, the name of the library varies between architectures.
  84. To avoid hardcoding the name of the package in the symbols file, you can
  85. use the marker \fI#PACKAGE#\fR. It will be replaced by the real package
  86. name during installation of the symbols files. Contrary to the
  87. \fI#MINVER#\fR marker, \fI#PACKAGE#\fR will never appear in a symbols file
  88. inside a binary package.
  89. .SS Using symbol tags
  90. .P
  91. Symbol tagging is useful for marking symbols that are special in some way. Any
  92. symbol can have an arbitrary number of tags associated with it. While all tags are
  93. parsed and stored, only a some of them are understood by
  94. \fBdpkg\-gensymbols\fR and trigger special handling of the symbols. See
  95. subsection \fBStandard symbol tags\fR for reference of these tags.
  96. .P
  97. Tag specification comes right before the symbol name (no whitespace is allowed
  98. in between). It always starts with an opening bracket \fB(\fR, ends with a
  99. closing bracket \fB)\fR and must contain at least one tag. Multiple tags are
  100. separated by the \fB|\fR character. Each tag can optionally have a value which
  101. is separated form the tag name by the \fB=\fR character. Tag names and values
  102. can be arbitrary strings except they cannot contain any of the special \fB)\fR
  103. \fB|\fR \fB=\fR characters. Symbol names following a tag specification can
  104. optionally be quoted with either \fB'\fR or \fB"\fR characters to allow
  105. whitespaces in them. However, if there are no tags specified for the symbol,
  106. quotes are treated as part of the symbol name which continues up until the
  107. first space.
  108. .P
  109. (tag1=i am marked|tag name with space)"tagged quoted symbol"@Base 1.0
  110. (optional)tagged_unquoted_symbol@Base 1.0 1
  111. untagged_symbol@Base 1.0
  112. .P
  113. The first symbol in the example is named \fItagged quoted symbol\fR and has two
  114. tags: \fItag1\fR with value \fIi am marked\fR and \fItag name with space\fR
  115. that has no value. The second symbol named \fItagged_unquoted_symbol\fR is
  116. only tagged with the tag named \fIoptional\fR. The last symbol is an
  117. example of the normal untagged symbol.
  118. .P
  119. Since symbol tags are an extension of the \fBdeb\-symbols\fP(5) format, they
  120. can only be part of the symbols files used in source packages (those files
  121. should then be seen as templates used to build the symbols files that are
  122. embedded in binary packages). When
  123. \fBdpkg\-gensymbols\fR is called without the \fB\-t\fP option, it will
  124. output symbols files compatible to the \fBdeb\-symbols\fP(5) format:
  125. it fully processes symbols according to the requirements of their standard tags
  126. and strips all tags from the output. On the contrary, in template mode
  127. (\fB\-t\fP) all symbols and their tags (both standard and unknown ones)
  128. are kept in the output and are written in their original form as they were
  129. loaded.
  130. .SS Standard symbol tags
  131. .TP
  132. .B optional
  133. A symbol marked as optional can disappear from the library at any time and that
  134. will never cause \fBdpkg\-gensymbols\fR to fail. However, disappeared optional
  135. symbols will continuously appear as MISSING in the diff in each new package
  136. revision. This behaviour serves as a reminder for the maintainer that such a
  137. symbol needs to be removed from the symbol file or readded to the library. When
  138. the optional symbol, which was previously declared as MISSING, suddenly
  139. reappears in the next revision, it will be upgraded back to the "existing"
  140. status with its minimum version unchanged.
  141. This tag is useful for symbols which are private where their disappearance do
  142. not cause ABI breakage. For example, most of C++ template instantiations fall
  143. into this category. Like any other tag, this one may also have an arbitrary
  144. value: it could be used to indicate why the symbol is considered optional.
  145. .TP
  146. .B arch=\fIarchitecture list\fR
  147. This tag allows one to restrict the set of architectures where the symbol
  148. is supposed to exist. When the symbols list is updated with the symbols
  149. discovered in the library, all arch-specific symbols which do not concern
  150. the current host architecture are treated as if they did not exist. If an
  151. arch-specific symbol matching the current host architecture does not exist
  152. in the library, normal procedures for missing symbols apply and it may
  153. cause \fBdpkg\-gensymbols\fR to fail. On the other hand, if the
  154. arch-specific symbol is found when it was not supposed to exist (because
  155. the current host architecture is not listed in the tag), it is made arch
  156. neutral (i.e. the arch tag is dropped and the symbol will appear in the
  157. diff due to this change), but it is not considered as new.
  158. When operating in the default non-template mode, among arch-specific symbols
  159. only those that match the current host architecture are written to the
  160. symbols file. On the contrary, all arch-specific symbols (including those
  161. from foreign arches) are always written to the symbol file when operating
  162. in template mode.
  163. The format of \fIarchitecture list\fR is the same as the one used in the
  164. \fBBuild\-Depends\fP field of \fIdebian/control\fR (except the enclosing
  165. square brackets []). For example, the first symbol from the list below
  166. will be considered only on alpha, any\-amd64 and ia64 architectures,
  167. the second only on linux architectures, while the third one anywhere
  168. except on armel.
  169. (arch=alpha any\-amd64 ia64)a_64bit_specific_symbol@Base 1.0
  170. (arch=linux\-any)linux_specific_symbol@Base 1.0
  171. (arch=!armel)symbol_armel_does_not_have@Base 1.0
  172. .TP
  173. .B ignore\-blacklist
  174. dpkg\-gensymbols has an internal blacklist of symbols that should not
  175. appear in symbols files as they are usually only side-effects of
  176. implementation details of the toolchain. If for some reason, you really
  177. want one of those symbols to be included in the symbols file, you should
  178. tag the symbol with \fBignore\-blacklist\fP. It can be necessary for
  179. some low level toolchain libraries like libgcc.
  180. .TP
  181. .B c++
  182. Denotes \fIc++\fR symbol pattern. See \fBUsing symbol patterns\fR subsection
  183. below.
  184. .TP
  185. .B symver
  186. Denotes \fIsymver\fR (symbol version) symbol pattern. See \fBUsing symbol
  187. patterns\fR subsection below.
  188. .TP
  189. .B regex
  190. Denotes \fIregex\fR symbol pattern. See \fBUsing symbol patterns\fR subsection
  191. below.
  192. .SS Using symbol patterns
  193. .P
  194. Unlike a standard symbol specification, a pattern may cover multiple real
  195. symbols from the library. \fBdpkg\-gensymbols\fR will attempt to match each
  196. pattern against each real symbol that does \fInot\fR have a specific symbol
  197. counterpart defined in the symbol file. Whenever the first matching pattern is
  198. found, all its tags and properties will be used as a basis specification of the
  199. symbol. If none of the patterns matches, the symbol will be considered as new.
  200. A pattern is considered lost if it does not match any symbol in the library. By
  201. default this will trigger a \fBdpkg\-gensymbols\fP failure under \fB\-c1\fP or
  202. higher level. However, if the failure is undesired, the pattern may be marked
  203. with the \fIoptional\fR tag. Then if the pattern does not match anything, it
  204. will only appear in the diff as MISSING. Moreover, like any symbol, the pattern
  205. may be limited to the specific architectures with the \fIarch\fR tag. Please
  206. refer to \fBStandard symbol tags\fR subsection above for more information.
  207. Patterns are an extension of the \fBdeb\-symbols\fP(5) format hence they are
  208. only valid in symbol file templates. Pattern specification syntax is not any
  209. different from the one of a specific symbol. However, symbol name part of the
  210. specification serves as an expression to be matched against \fIname@version\fR
  211. of the real symbol. In order to distinguish among different pattern types, a
  212. pattern will typically be tagged with a special tag.
  213. At the moment, \fBdpkg\-gensymbols\fR supports three basic pattern types:
  214. .TP 3
  215. .B c++
  216. This pattern is denoted by the \fIc++\fR tag. It matches only C++ symbols by
  217. their demangled symbol name (as emitted by \fBc++filt\fR(1) utility). This
  218. pattern is very handy for matching symbols which mangled names might vary
  219. across different architectures while their demangled names remain the same. One
  220. group of such symbols is \fInon\-virtual thunks\fR which have architecture
  221. specific offsets embedded in their mangled names. A common instance of this
  222. case is a virtual destructor which under diamond inheritance needs a
  223. non-virtual thunk symbol. For example, even if _ZThn8_N3NSB6ClassDD1Ev@Base on
  224. 32bit architectures will probably be _ZThn16_N3NSB6ClassDD1Ev@Base on 64bit
  225. ones, it can be matched with a single \fIc++\fR pattern:
  226. .RS
  227. .PP
  228. libdummy.so.1 libdummy1 #MINVER#
  229. [...]
  230. (c++)"non\-virtual thunk to NSB::ClassD::~ClassD()@Base" 1.0
  231. [...]
  232. .P
  233. The demangled name above can be obtained by executing the following command:
  234. .PP
  235. $ echo '_ZThn8_N3NSB6ClassDD1Ev@Base' | c++filt
  236. .P
  237. Please note that while mangled name is unique in the library by definition,
  238. this is not necessarily true for demangled names. A couple of distinct real
  239. symbols may have the same demangled name. For example, that's the case with
  240. non-virtual thunk symbols in complex inheritance configurations or with most
  241. constructors and destructors (since g++ typically generates two real symbols
  242. for them). However, as these collisions happen on the ABI level, they should
  243. not degrade quality of the symbol file.
  244. .RE
  245. .TP
  246. .B symver
  247. This pattern is denoted by the \fIsymver\fR tag. Well maintained libraries have
  248. versioned symbols where each version corresponds to the upstream version where
  249. the symbol got added. If that's the case, you can use a \fIsymver\fR pattern to
  250. match any symbol associated to the specific version. For example:
  251. .RS
  252. .PP
  253. libc.so.6 libc6 #MINVER#
  254. (symver)GLIBC_2.0 2.0
  255. [...]
  256. (symver)GLIBC_2.7 2.7
  257. access@GLIBC_2.0 2.2
  258. .PP
  259. All symbols associated with versions GLIBC_2.0 and GLIBC_2.7 will lead to
  260. minimal version of 2.0 and 2.7 respectively with the exception of the symbol
  261. access@GLIBC_2.0. The latter will lead to a minimal dependency on libc6 version
  262. 2.2 despite being in the scope of the "(symver)GLIBC_2.0" pattern because
  263. specific symbols take precedence over patterns.
  264. .P
  265. Please note that while old style wildcard patterns (denoted by "*@version" in
  266. the symbol name field) are still supported, they have been deprecated by new
  267. style syntax "(symver|optional)version". For example, "*@GLIBC_2.0 2.0" should
  268. be written as "(symver|optional)GLIBC_2.0 2.0" if the same behaviour is needed.
  269. .RE
  270. .TP
  271. .B regex
  272. Regular expression patterns are denoted by the \fIregex\fR tag. They match by
  273. the perl regular expression specified in the symbol name field. A regular
  274. expression is matched as it is, therefore do not forget to start it with the
  275. \fI^\fR character or it may match any part of the real symbol
  276. \fIname@version\fR string. For example:
  277. .RS
  278. .PP
  279. libdummy.so.1 libdummy1 #MINVER#
  280. (regex)"^mystack_.*@Base$" 1.0
  281. (regex|optional)"private" 1.0
  282. .P
  283. Symbols like "mystack_new@Base", "mystack_push@Base", "mystack_pop@Base" etc.
  284. will be matched by the first pattern while e.g. "ng_mystack_new@Base" won't.
  285. The second pattern will match all symbols having the string "private" in their
  286. names and matches will inherit \fIoptional\fR tag from the pattern.
  287. .RE
  288. .P
  289. Basic patterns listed above can be combined where it makes sense. In that case,
  290. they are processed in the order in which the tags are specified. For example,
  291. both
  292. .PP
  293. (c++|regex)"^NSA::ClassA::Private::privmethod\\d\\(int\\)@Base" 1.0
  294. (regex|c++)N3NSA6ClassA7Private11privmethod\\dEi@Base 1.0
  295. .P
  296. will match symbols "_ZN3NSA6ClassA7Private11privmethod1Ei@Base" and
  297. "_ZN3NSA6ClassA7Private11privmethod2Ei@Base". When matching the first pattern,
  298. the raw symbol is first demangled as C++ symbol, then the demangled name is
  299. matched against the regular expression. On the other hand, when matching the
  300. second pattern, regular expression is matched against the raw symbol name, then
  301. the symbol is tested if it is C++ one by attempting to demangle it. A failure
  302. of any basic pattern will result in the failure of the whole pattern.
  303. Therefore, for example, "__N3NSA6ClassA7Private11privmethod\\dEi@Base" will not
  304. match either of the patterns because it is not a valid C++ symbol.
  305. .P
  306. In general, all patterns are divided into two groups: aliases (basic \fIc++\fR
  307. and \fIsymver\fR) and generic patterns (\fIregex\fR, all combinations of
  308. multiple basic patterns). Matching of basic alias-based patterns is fast (O(1))
  309. while generic patterns are O(N) (N - generic pattern count) for each symbol.
  310. Therefore, it is recommended not to overuse generic patterns.
  311. .P
  312. When multiple patterns match the same real symbol, aliases (first \fIc++\fR,
  313. then \fIsymver\fR) are preferred over generic patterns. Generic patterns are
  314. matched in the order they are found in the symbol file template until the first
  315. success. Please note, however, that manual reordering of template file entries
  316. is not recommended because \fBdpkg\-gensymbols\fR generates diffs based on the
  317. alphanumerical order of their names.
  318. .SS Using includes
  319. .P
  320. When the set of exported symbols differ between architectures, it may become
  321. inefficient to use a single symbol file. In those cases, an include directive
  322. may prove to be useful in a couple of ways:
  323. .IP \(bu 4
  324. You can factorize the common part in some external file
  325. and include that file in your \fIpackage\fR.symbols.\fIarch\fR file by
  326. using an include directive like this:
  327. #include "\fIpackages\fR.symbols.common"
  328. .IP \(bu
  329. The include directive may also be tagged like any symbol:
  330. (tag|...|tagN)#include "file-to-include"
  331. As a result, all symbols included from \fIfile-to-include\fR will be considered
  332. to be tagged with \fItag\fR ... \fItagN\fR by default. You can use this feature
  333. to create a common \fIpackage\fR.symbols file which includes architecture
  334. specific symbol files:
  335. common_symbol1@Base 1.0
  336. (arch=amd64 ia64 alpha)#include "package.symbols.64bit"
  337. (arch=!amd64 !ia64 !alpha)#include "package.symbols.32bit"
  338. common_symbol2@Base 1.0
  339. .P
  340. The symbols files are read line by line, and include directives are processed
  341. as soon as they are encountered. This means that the content of the included
  342. file can override any content that appeared before the include directive and
  343. that any content after the directive can override anything contained in the
  344. included file. Any symbol (or even another #include directive) in the included
  345. file can specify additional tags or override values of the inherited tags in
  346. its tag specification. However, there is no way for the symbol to remove
  347. any of the inherited tags.
  348. .P
  349. An included file can repeat the header line containing the SONAME of the
  350. library. In that case, it overrides any header line previously read.
  351. However, in general it's best to avoid duplicating header lines. One way
  352. to do it is the following:
  353. .PP
  354. #include "libsomething1.symbols.common"
  355. arch_specific_symbol@Base 1.0
  356. .SS Good library management
  357. .P
  358. A well-maintained library has the following features:
  359. .IP \(bu 4
  360. its API is stable (public symbols are never dropped, only new public
  361. symbols are added) and changes in incompatible ways only when the SONAME
  362. changes;
  363. .IP \(bu 4
  364. ideally, it uses symbol versioning to achieve ABI stability despite
  365. internal changes and API extension;
  366. .IP \(bu 4
  367. it doesn't export private symbols (such symbols can be tagged optional as
  368. workaround).
  369. .P
  370. While maintaining the symbols file, it's easy to notice appearance and
  371. disappearance of symbols. But it's more difficult to catch incompatible
  372. API and ABI change. Thus the maintainer should read thoroughly the
  373. upstream changelog looking for cases where the rules of good library
  374. management have been broken. If potential problems are discovered,
  375. the upstream author should be notified as an upstream fix is always better
  376. than a Debian specific work-around.
  377. .SH OPTIONS
  378. .TP
  379. .BI \-P package-build-dir
  380. Scan \fIpackage-build-dir\fR instead of debian/tmp.
  381. .TP
  382. .BI \-p package
  383. Define the package name. Required if more than one binary package is listed in
  384. debian/control (or if there's no debian/control file).
  385. .TP
  386. .BI \-v version
  387. Define the package version. Defaults to the version extracted from
  388. debian/changelog. Required if called outside of a source package tree.
  389. .TP
  390. .BI \-e library-file
  391. Only analyze libraries explicitly listed instead of finding all public
  392. libraries. You can use shell patterns used for pathname expansions (see
  393. the File::Glob manual page for details) in \fIlibrary-file\fR to match
  394. multiple libraries with a single argument (otherwise you need multiple
  395. \fB\-e\fR).
  396. .TP
  397. .BI \-I filename
  398. Use \fIfilename\fR as reference file to generate the symbols file
  399. that is integrated in the package itself.
  400. .TP
  401. .B \-O
  402. Print the generated symbols file to standard output, rather than being
  403. stored in the package build tree.
  404. .TP
  405. .BI \-O filename
  406. Store the generated symbols file as \fIfilename\fR. If \fIfilename\fR is
  407. pre-existing, its content is used as basis for the generated symbols file.
  408. You can use this feature to update a symbols file so that it matches a
  409. newer upstream version of your library.
  410. .TP
  411. .BI \-t
  412. Write the symbol file in template mode rather than the format compatible with
  413. \fBdeb\-symbols\fP(5). The main difference is that in the template mode symbol
  414. names and tags are written in their original form contrary to the
  415. post-processed symbol names with tags stripped in the compatibility mode.
  416. Moreover, some symbols might be omitted when writing a standard
  417. \fBdeb\-symbols\fP(5) file (according to the tag processing rules) while all
  418. symbols are always written to the symbol file template.
  419. .TP
  420. .BI \-c [0-4]
  421. Define the checks to do when comparing the generated symbols file with the
  422. template file used as starting point. By default the level is 1. Increasing
  423. levels do more checks and include all checks of lower levels. Level 0 never
  424. fails. Level 1 fails if some symbols have disappeared. Level 2 fails if some
  425. new symbols have been introduced. Level 3 fails if some libraries have
  426. disappeared. Level 4 fails if some libraries have been introduced.
  427. This value can be overridden by the environment variable
  428. .BR DPKG_GENSYMBOLS_CHECK_LEVEL .
  429. .TP
  430. .BI \-q
  431. Keep quiet and never generate a diff between generated symbols file and the
  432. template file used as starting point or show any warnings about new/lost
  433. libraries or new/lost symbols. This option only disables informational output
  434. but not the checks themselves (see \fB\-c\fP option).
  435. .TP
  436. .BI \-a arch
  437. Assume \fIarch\fR as host architecture when processing symbol files. Use this
  438. option to generate a symbol file or diff for any architecture provided its
  439. binaries are already available.
  440. .TP
  441. .BI \-d
  442. Enable debug mode. Numerous messages are displayed to explain what
  443. .B dpkg\-gensymbols
  444. does.
  445. .TP
  446. .BI \-V
  447. Enable verbose mode. The generated symbols file contains deprecated
  448. symbols as comments. Furthermore in template mode, pattern symbols
  449. are followed by comments listing real symbols that have matched the
  450. pattern.
  451. .TP
  452. .BR \-? ", " \-\-help
  453. Show the usage message and exit.
  454. .TP
  455. .BR \-\-version
  456. Show the version and exit.
  457. .
  458. .SH SEE ALSO
  459. .BR http://people.redhat.com/drepper/symbol\-versioning
  460. .br
  461. .BR http://people.redhat.com/drepper/goodpractice.pdf
  462. .br
  463. .BR http://people.redhat.com/drepper/dsohowto.pdf
  464. .br
  465. .BR deb\-symbols (5),
  466. .BR dpkg\-shlibdeps (1).