build.info.pod 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. =pod
  2. =head1 NAME
  3. build.info - Building information files
  4. =head1 SYNOPSIS
  5. B<IF[>0|1B<]>
  6. B<ELSIF[>0|1B<]>
  7. B<ELSE>
  8. B<ENDIF>
  9. B<SUBDIRS=> I<dir> ...
  10. B<PROGRAMS=> I<name> ...
  11. B<LIBS=> I<name> ...
  12. B<MODULES=> I<name> ...
  13. B<SCRIPTS=> I<name> ...
  14. B<DEPEND[>I<item>B<]=> I<otheritem> ...
  15. B<GENERATE[>I<item>B<]=> I<generator> I<generator-args> ...
  16. B<SOURCE[>I<item>B<]=> I<file> ...
  17. B<SHARED_SOURCE[>I<item>B<]=> I<file> ...
  18. B<DEFINE[>I<item>B<]=> I<name>[B<=>I<value>] ...
  19. B<INCLUDE[>I<item>B<]=> I<dir> ...
  20. B<$>I<VARIABLE>B<=>I<value>
  21. =head1 DESCRIPTION
  22. OpenSSL's build system revolves around three questions:
  23. =over 4
  24. =item What to build for?
  25. This is about choice of platform (combination of hardware, operating
  26. system, and toolchain).
  27. =item What to build?
  28. This is about having all the information on what needs to be built and
  29. from what.
  30. =item How to build it?
  31. This is about build file generation.
  32. =back
  33. This document is all about the second item, "What to build?", and most
  34. of all, how to specify that information.
  35. For some terms used in this document, please see the L</GLOSSARY> at
  36. the end.
  37. =head2 F<build.info> files
  38. F<build.info> files are meta data files for OpenSSL's built file
  39. generators, and are used to specify exactly what end product files
  40. (programs, libraries, modules or scripts) are to be produced, and from
  41. what sources.
  42. Intermediate files, such as object files, are seldom referred to at
  43. all. They sometimes can be, if there's a need, but this should happen
  44. very rarely, and support for that sort of thing is added on as-needed
  45. basis.
  46. Any time a directory or file is expected in a statement value, Unix
  47. syntax must be used, which means that the slash C</> must be used as
  48. the directory separator.
  49. =head2 General syntax
  50. =head3 Comments
  51. Comments are any line that start with a hash sign (C<#>). The hash
  52. sign may be preceded by any number of horizontal spaces.
  53. =head3 Filenames
  54. F<build.info> files are platform agnostic. This means that there is
  55. some information in them that is representative rather than specific.
  56. This is particularly visible with end product names, they work more
  57. like a tag than as the actual filename that's going to be produced.
  58. This is because different platforms have different decorations on
  59. different types of files.
  60. For example, if we say that we want to produce a program C<foo>, it
  61. would look like this:
  62. PROGRAM=foo
  63. However, the program filename may end up being just C<foo> (typical
  64. for Unix), or C<foo.exe> (typical for Windows), or even C<BLAH$FOO.EXE>
  65. (possible on VMS, depending on policy).
  66. These platform specific decorations are not the concern of
  67. F<build.info> files. The build file generators are responsible for
  68. transforming these platform agnostic names to their platform specific
  69. counterparts.
  70. =head3 Statements
  71. With the exception of variables and conditions, the general statement
  72. syntax is one of:
  73. =over 4
  74. =item B<I<KEYWORD>> B<=> I<value> ...
  75. =item B<I<KEYWORD>[>I<item>B<]> B<=> I<value> ...
  76. =back
  77. Every B<I<KEYWORD>> represents some particular type of information.
  78. The first form (sometimes called "plain statement") is used to specify
  79. information on what end products need to be built, for example:
  80. PROGRAMS=foo bar
  81. LIBS=libpoly libcookie
  82. MODULES=awesome-plugin
  83. SCRIPTS=tool1 tool2
  84. SUBDIRS=dir1 dir2
  85. This says that we want to build programs C<foo> and C<bar>, the
  86. libraries C<libpoly> and C<libcookie>, an awesome plugin module
  87. C<awesome-plugin>, a couple of scripts C<tool1> and C<tool2>, and
  88. finally that there are more F<build.info> files in subdirectories
  89. C<dir1> and C<dir2>.
  90. The second form (sometimes called "indexed statement") is used to
  91. specify further details for existing items, for example:
  92. SOURCE[foo]=foo.c details.c
  93. DEPEND[foo]=libcookie
  94. This says that the program C<foo> is built from the source files
  95. F<foo.c> and F<details.c>, and that it depends on the library
  96. C<libcookie> (in other words, the library will be included when
  97. linking that program together).
  98. For any indexed statement for which the item hasn't been specified
  99. through any plain statement, or where the item exists but the indexed
  100. statement does not apply, the value is simply ignored by the build
  101. file generators.
  102. =head3 Statement attributes
  103. Some statements can have attributes added to them, to allow for
  104. variations on how they are treated.
  105. =over 4
  106. =item B<I<KEYWORD>{> I<attrib> | I<attrib>B<=>I<attrib-value> [,...]B<}>
  107. B<=> I<value> ...
  108. =item B<I<KEYWORD>[>I<item>B<]{> I<attrib> | I<attrib>B<=>I<attrib-value>
  109. [,...]B<}> B<=> I<value> ...
  110. =back
  111. Attributes are passed as they are to the build file generators, and
  112. the exact interpretation of those attributes is entirely up to them
  113. (see L</Known attributes> below for details).
  114. A current example:
  115. LIBS{noinst,has_main}=libtestutil.a
  116. This says that the static library C<libtestutil.a> should not be
  117. installed (C<noinst>), and that it includes an object file that has
  118. the C<main> symbol (C<has_main>). Most platforms don't need to know
  119. the latter, but there are some where the program linker will not look
  120. for C<main> in libraries unless it's explicitly told so, so this is
  121. way to tell the build file generator to emit the necessary command
  122. options to make that happen.
  123. Attributes are accumulated globally. This means that a library could
  124. be given like this in different places:
  125. # Location 1
  126. LIBS=libwhatever
  127. # Location 2
  128. LIBS{noinst}=libwhatever
  129. # Location 3
  130. LIBS{has_main}=libwhatever
  131. The end result is that the library C<libwhatever> will have the
  132. attributes C<noinst> and C<has_main> attached to it.
  133. =head3 Quoting and tokens
  134. Statement values are normally split into a list of tokens, separated
  135. by spaces.
  136. To avoid having a value split up into several tokens, they may be
  137. quoted with double (C<">) or single (C<'>) quotes.
  138. For example:
  139. PROGRAMS=foo "space cadet" bar
  140. This says that we sant to build three programs, C<foo>, C<space cadet>
  141. and C<bar>.
  142. =head3 Conditionals
  143. F<build.info> files include a very simple condition system, involving
  144. the following keywords:
  145. =over 4
  146. =item B<IF[>0|1B<]>
  147. =item B<ELSIF[>0|1B<]>
  148. =item B<ELSE>
  149. =item B<ENDIF>
  150. =back
  151. This works like any condition system with similar syntax, and the
  152. condition value in B<IF> and B<ELSIF> can really be any literal value
  153. that perl can interpret as true or false.
  154. Conditional statements are nesting.
  155. In itself, this is not very powerful, but together with L</Perl nuggets>,
  156. it can be.
  157. =head3 Variables
  158. F<build.info> handles simple variables. They are defined by
  159. assignment:
  160. =over 4
  161. =item B<$>I<NAME> B<=> I<value>
  162. =back
  163. These variables can then be used as part of any statement value or
  164. indexed statement item. This should be used with some care, as
  165. I<variables are expanded into their values before the value they are
  166. part of is tokenized>.
  167. I<Variable assignment values are not tokenized.>
  168. =head2 Scope
  169. Most of the statement values are accumulated globally from all the
  170. F<build.info> files that are digested. There are two exceptions,
  171. F<build.info> variables and B<SUBDIRS> statement, for which the scope
  172. is the F<build.info> file they are in.
  173. =head2 Perl nuggets
  174. Whenever a F<build.info> file is read, it is passed through the Perl
  175. template processor L<OpenSSL::Template>, which is a small extension of
  176. L<Text::Template>.
  177. Perl nuggets are anything between C<{-> and C<-}>, and whatever the
  178. result from such a nugget is, that value will replace the nugget in
  179. text form. This is useful to get dynamically generated F<build.info>
  180. statements, and is most often seen used together with the B<IF> and
  181. B<ELSIF> conditional statements.
  182. For example:
  183. IF[{- $disabled{something} -}]
  184. # do whatever's needed when "something" is disabled
  185. ELSIF[{- $somethingelse eq 'blah' -}]
  186. # do whatever's needed to satisfy this condition
  187. ELSE
  188. # fallback
  189. ENDIF
  190. Normal Perl scope applies, so it's possible to have an initial perl
  191. nugget that sets diverse global variables that are used in later
  192. nuggets. Each nugget is a Perl block of its own, so B<my> definitions
  193. are only in scope within the same nugget, while B<our> definitions are
  194. in scope within the whole F<build.info> file.
  195. =head1 REFERENCE
  196. =head2 Conditionals
  197. =over 4
  198. =item B<IF[>0|1B<]>
  199. If the condition is true (represented as C<1> here), everything
  200. between this B<IF> and the next corresponding B<ELSIF> or B<ELSE>
  201. applies, and the rest until the corresponding B<ENDIF> is skipped
  202. over.
  203. If the condition is false (represented as C<0> here), everything
  204. from this B<IF> is skipped over until the next corresponding B<ELSIF>
  205. or B<ELSE>, at which point processing continues.
  206. =item B<ELSE>
  207. If F<build.info> statements have been skipped over to this point since
  208. the corresponding B<IF> or B<ELSIF>, F<build.info> processing starts
  209. again following this line.
  210. =item B<ELSIF[>0|1B<]>
  211. This is B<ELSE> and B<IF> combined.
  212. =item B<ENDIF>
  213. Marks the end of a conditional.
  214. =back
  215. =head2 Plain statements
  216. =over 4
  217. =item B<SUBDIRS=> I<dir> ...
  218. This instructs the F<build.info> reader to also read the F<build.info>
  219. file in every specified directory. All directories should be given
  220. relative to the location of the current F<build.info> file.
  221. =item B<PROGRAMS=> I<name> ...
  222. Collects names of programs that should be built.
  223. B<PROGRAMS> statements may have attributes, which apply to all the
  224. programs given in such a statement. For example:
  225. PROGRAMS=foo
  226. PROGRAMS{noinst}=bar
  227. With those two lines, the program C<foo> will not have the attribute
  228. C<noinst>, while the program C<bar> will.
  229. =item B<LIBS=> I<name> ...
  230. Collects names of libraries that should be built.
  231. The normal case is that libraries are built in both static and shared
  232. form. However, if a name ends with C<.a>, only the static form will
  233. be produced.
  234. Similarly, libraries may be referred in indexed statements as just the
  235. plain name, or the name including the ending C<.a>. If given without
  236. the ending C<.a>, any form available will be used, but if given with
  237. the ending C<.a>, the static library form is used unconditionally.
  238. B<LIBS> statements may have attributes, which apply to all the
  239. libraries given in such a statement. For example:
  240. LIBS=libfoo
  241. LIBS{noinst}=libbar
  242. With those two lines, the library C<libfoo> will not have the
  243. attribute C<noinst>, while the library C<libbar> will.
  244. =item B<MODULES=> I<name>
  245. Collects names of dynamically loadable modules that should be built.
  246. B<MODULES> statements may have attributes, which apply to all the
  247. modules given in such a statement. For example:
  248. MODULES=foo
  249. MODULES{noinst}=bar
  250. With those two lines, the module C<foo> will not have the attribute
  251. C<noinst>, while the module C<bar> will.
  252. =item B<SCRIPTS=> I<name>
  253. Collects names of scripts that should be built, or that just exist.
  254. That is how they differ from programs, as programs are always expected
  255. to be compiled from multiple sources.
  256. B<SCRIPTS> statements may have attributes, which apply to all the
  257. scripts given in such a statement. For example:
  258. SCRIPTS=foo
  259. SCRIPTS{noinst}=bar
  260. With those two lines, the script C<foo> will not have the attribute
  261. C<noinst>, while the script C<bar> will.
  262. =back
  263. =head2 Indexed statements
  264. =over 4
  265. =item B<DEPEND[>I<item>B<]> B<=> I<file> ...
  266. Collects dependencies, where I<item> depends on the given I<file>s.
  267. As a special case, the I<item> may be empty, for which the build file
  268. generators should make the whole build depend on the given I<file>s,
  269. rather than some specific I<item>.
  270. The I<item> may be any program, library, module, script, or any
  271. filename used as a value anywhere.
  272. B<DEPEND> statements may have attributes, which apply to each
  273. individual dependency in such a statement. For example:
  274. DEPEND[libfoo.a]=libmandatory.a
  275. DEPEND[libfoo.a]{weak}=libbar.a libcookie.a
  276. With those statements, the dependency between C<libfoo.a> and
  277. C<libmandatory.a> is strong, while the dependency between C<libfoo.a>
  278. and C<libbar.a> and C<libcookie.a> is weak. See the description of
  279. B<weak> in L</Known attributes> for more information.
  280. =item B<GENERATE[>I<item>B<]> B<=> I<generator> I<generator-arg> ...
  281. This specifies that the I<item> is generated using the I<generator>
  282. with the I<generator-arg>s as arguments, plus the name of the output
  283. file as last argument.
  284. For I<generator>s where this is applicable, any B<INCLUDE> statement
  285. for the same I<item> will be given to the I<generator> as its
  286. inclusion directories. Likewise, any B<DEPEND> statement for the same
  287. I<item> will be given to the I<generator> as an extra file or module
  288. to load, where this is applicable.
  289. The build file generators must be able to recognise the I<generator>.
  290. Currently, they at least recognise files ending in C<.pl>, and will
  291. execute them to generate the I<item>, and files ending in C<.in>,
  292. which will be used as input for L<OpenSSL::Template> to generate
  293. I<item> (in other words, we use the exact same style of
  294. L</Perl nuggets> mechanism that is used to read F<build.info> files).
  295. =item B<SOURCE[>I<item>B<]> B<=> I<file> ...
  296. Collects filenames that will be used as source files for I<item>.
  297. The I<item> must be a singular item, and may be any program, library,
  298. module or script given with B<PROGRAMS>, B<LIBS>, B<MODULES> and
  299. B<SCRIPTS>.
  300. Static libraries may be sources. In that case, its object files are
  301. used directly when building I<item> instead of relying on library
  302. dependency and symbol resolution (through B<DEPEND> statements).
  303. =item B<SHARED_SOURCE[>I<item>B<]> B<=> I<file> ...
  304. Collects filenames that will be used as source files for I<item>.
  305. The I<item> must be a singular item, and may be any library or module
  306. given with B<LIBS> or B<MODULES>. For libraries, the given filenames
  307. are only used for their shared form, so if the item is a library name
  308. ending with C<.a>, the filenames will be ignored.
  309. =item B<DEFINE[>I<item>B<]> B<=> I<name>[B<=>I<value>] ...
  310. Collects I<name> / I<value> pairs (or just I<name> with no defined
  311. value if no I<value> is given) associated with I<item>.
  312. The build file generators will decide what to do with them. For
  313. example, these pairs should become C macro definitions whenever a
  314. C<.c> file is built into an object file.
  315. =item B<INCLUDE[>I<item>B<]> B<=> I<dir> ...
  316. Collects inclusion directories that will be used when building the
  317. I<item> components (object files and whatever else). This is used at
  318. the discretion of the build file generators.
  319. =back
  320. =head2 Known attributes
  321. Note: this will never be a complete list of attributes.
  322. =over 4
  323. =item B<noinst>
  324. This is used to specify that the end products this is set for should
  325. not be installed, that they are only internal. This is applicable on
  326. internal static libraries, or on test programs.
  327. =item B<misc>
  328. This is used with B<SCRIPTS>, to specify that some scripts should be
  329. installed in the "misc" directory rather than the normal program
  330. directory.
  331. =item B<engine>
  332. This is used with B<MODULES>, to specify what modules are engines and
  333. should be installed in the engines directory instead of the modules
  334. directory.
  335. =item B<weak>
  336. This is used with B<DEPEND> where libraries are involved, to specify
  337. that the dependency between two libraries is weak and is only there to
  338. infer order.
  339. Without this attribute, a dependency between two libraries, expressed
  340. like this, means that if C<libfoo.a> appears in a linking command
  341. line, so will C<libmandatory.a>:
  342. DEPEND[libfoo.a]=libmandatory.a
  343. With this attribute, a dependency between two libraries, expressed
  344. like this, means that if I<both> C<libfoo.a> and C<libmandatory.a>
  345. appear in a linking command line (because of recursive dependencies
  346. through other libraries), they will be ordered in such a way that this
  347. dependency is maintained:
  348. DEPEND[libfoo.a]{weak}=libfoo.a libcookie.a
  349. This is useful in complex dependency trees where two libraries can be
  350. used as alternatives for each other. In this example, C<lib1.a> and
  351. C<lib2.a> have alternative implementations of the same thing, and
  352. C<libmandatory.a> has unresolved references to that same thing, and is
  353. therefore depending on either of them, but not both at the same time:
  354. DEPEND[program1]=libmandatory.a lib1.a
  355. DEPEND[program2]=libmandatory.a lib2.a
  356. DEPEND[libmandatory]{weak}=lib1.a lib2.a
  357. =back
  358. =head1 GLOSSARY
  359. =over 4
  360. =item "build file"
  361. This is any platform specific file that describes the complete build,
  362. with platform specific commands. On Unix, this is typically
  363. F<Makefile>; on VMS, this is typically F<descrip.mms>.
  364. =item "build file generator"
  365. Perl code that generates build files, given configuration data and
  366. data collected from F<build.info> files.
  367. =item "plain statement"
  368. Any F<build.info> statement of the form B<I<KEYWORD>>=I<values>, with
  369. the exception of conditional statements and variable assignments.
  370. =item "indexed statement"
  371. Any F<build.info> statement of the form B<I<KEYWORD>[>I<item>B<]=>I<values>,
  372. with the exception of conditional statements.
  373. =item "intermediate file"
  374. Any file that's an intermediate between a source file and an end
  375. product.
  376. =item "end product"
  377. Any file that is mentioned in the B<PROGRAMS>, B<LIBS>, B<MODULES> or
  378. B<SCRIPTS>.
  379. =back
  380. =head1 SEE ALSO
  381. For OpenSSL::Template documentation,
  382. C<perldoc -o man util/perl/OpenSSL/Template.pm>
  383. L<Text::Temlate|https://metacpan.org/pod/Text::Template>
  384. =head1 COPYRIGHT
  385. Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
  386. Licensed under the Apache License 2.0 (the "License"). You may not use this
  387. file except in compliance with the License. You can obtain a copy in the file
  388. LICENSE in the source distribution or at
  389. L<https://www.openssl.org/source/license.html>.
  390. =cut