Jamroot 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. # Copyright Vladimir Prus 2002-2006.
  2. # Copyright Dave Abrahams 2005-2006.
  3. # Copyright Rene Rivera 2005-2007.
  4. # Copyright Douglas Gregor 2005.
  5. #
  6. # Distributed under the Boost Software License, Version 1.0.
  7. # (See accompanying file LICENSE_1_0.txt or copy at
  8. # http://www.boost.org/LICENSE_1_0.txt)
  9. # Usage:
  10. #
  11. # bjam [options] [properties] [install|stage]
  12. #
  13. # Builds and installs Boost.
  14. #
  15. # Targets and Related Options:
  16. #
  17. # install Install headers and compiled library files to the
  18. # ======= configured locations (below).
  19. #
  20. # --prefix=<PREFIX> Install architecture independent files here.
  21. # Default; C:\Boost on Win32
  22. # Default; /usr/local on Unix. Linux, etc.
  23. #
  24. # --exec-prefix=<EPREFIX> Install architecture dependent files here.
  25. # Default; <PREFIX>
  26. #
  27. # --libdir=<DIR> Install library files here.
  28. # Default; <EPREFIX>/lib
  29. #
  30. # --includedir=<HDRDIR> Install header files here.
  31. # Default; <PREFIX>/include
  32. #
  33. # stage Build and install only compiled library files
  34. # ===== to the stage directory.
  35. #
  36. # --stagedir=<STAGEDIR> Install library files here
  37. # Default; ./stage
  38. #
  39. # Other Options:
  40. #
  41. # --build-type=<type> Build the specified pre-defined set of variations
  42. # of the libraries. Note, that which variants get
  43. # built depends on what each library supports.
  44. #
  45. # minimal (default) - Builds the single
  46. # "release" version of the libraries. This
  47. # release corresponds to specifying:
  48. # "release <threading>multi <link>shared
  49. # <link>static <runtime-link>shared" as the
  50. # Boost.Build variant to build.
  51. #
  52. # complete - Attempts to build all possible
  53. # variations.
  54. #
  55. # --build-dir=DIR Build in this location instead of building
  56. # within the distribution tree. Recommended!
  57. #
  58. # --show-libraries Displays the list of Boost libraries that require
  59. # build and installation steps, then exit.
  60. #
  61. # --layout=<layout> Determines whether to choose library names
  62. # and header locations such that multiple
  63. # versions of Boost or multiple compilers can
  64. # be used on the same system.
  65. #
  66. # versioned (default) - Names of boost
  67. # binaries include the Boost version
  68. # number and the name and version of the
  69. # compiler. Boost headers are installed
  70. # in a subdirectory of <HDRDIR> whose
  71. # name contains the Boost version
  72. # number.
  73. #
  74. # system - Binaries names do not include
  75. # the Boost version number or the name
  76. # and version number of the compiler.
  77. # Boost headers are installed directly
  78. # into <HDRDIR>. This option is
  79. # intended for system integrators who
  80. # are building distribution packages.
  81. #
  82. # --buildid=ID Adds the specified ID to the name of built
  83. # libraries. The default is to not add anything.
  84. #
  85. # --help This message.
  86. #
  87. # --with-<library> Build and install the specified <library>
  88. # If this option is used, only libraries
  89. # specified using this option will be built.
  90. #
  91. # --without-<library> Do not build, stage, or install the specified
  92. # <library>. By default, all libraries are built.
  93. #
  94. # Properties:
  95. #
  96. # toolset=toolset Indicates the toolset to build with.
  97. #
  98. # variant=debug|release Select the build variant
  99. #
  100. # link=static|shared Whether to build static or shared libraries
  101. #
  102. # threading=single|multi Whether to build single or multithreaded binaries
  103. #
  104. # runtime-link=static|shared
  105. # Whether to link to static or shared C and C++ runtime.
  106. #
  107. # TODO:
  108. # - handle boost version
  109. # - handle python options such as pydebug
  110. import generate ;
  111. import modules ;
  112. import set ;
  113. import stage ;
  114. import package ;
  115. import path ;
  116. import common ;
  117. import os ;
  118. import regex ;
  119. import errors ;
  120. import "class" : new ;
  121. import common ;
  122. import sequence ;
  123. import symlink ;
  124. import targets ;
  125. import project ;
  126. path-constant BOOST_ROOT : . ;
  127. constant BOOST_VERSION : 1.39.0 ;
  128. constant BOOST_JAMROOT_MODULE : $(__name__) ;
  129. local version-tag = [ MATCH "^([^.]+)[.]([^.]+)[.]([^.]+)" : $(BOOST_VERSION) ]
  130. ;
  131. if $(version-tag[3]) = 0
  132. {
  133. version-tag = $(version-tag[1-2]) ;
  134. }
  135. constant BOOST_VERSION_TAG : $(version-tag:J="_") ;
  136. # Option to choose how many variants to build. The default is "minimal".
  137. local build-type = [ MATCH "^--build-type=(.*)" : [ modules.peek : ARGV ] ] ;
  138. build-type ?= minimal ;
  139. if ! ( $(build-type) in minimal complete )
  140. {
  141. ECHO "The value of the --build-type option should be either 'complete' or 'minimal'" ;
  142. EXIT ;
  143. }
  144. rule handle-static-runtime ( properties * )
  145. {
  146. # This property combination is dangerous. Ideally, we would add a constraint
  147. # to default build, so that user can build this property combination only if
  148. # requested directly. But we do not have any 'constraint' system for
  149. # default-build, so we disable such builds in requirements.
  150. # For CW, static runtime is needed so that std::locale works.
  151. if <link>shared in $(properties) && <runtime-link>static in $(properties) &&
  152. ! ( <toolset>cw in $(properties) )
  153. {
  154. return <build>no ;
  155. }
  156. }
  157. project boost
  158. : requirements <include>.
  159. # Disable auto-linking for all targets here, primarily because it caused
  160. # troubles with V2.
  161. <define>BOOST_ALL_NO_LIB=1
  162. # Used to encode variant in target name. See the 'tag' rule below.
  163. <tag>@$(__name__).tag
  164. <conditional>@handle-static-runtime
  165. # The standard library Sun compilers use by default has no chance
  166. # of working with Boost. Override it.
  167. <toolset>sun:<stdlib>sun-stlport
  168. : usage-requirements <include>.
  169. : build-dir bin.v2
  170. ;
  171. # Setup convenient aliases for all libraries.
  172. all-libraries = [ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ]
  173. [ glob libs/*/build/Jamfile ] ]
  174. ;
  175. all-libraries = [ sequence.unique $(all-libraries) ] ;
  176. # The function_types library has a Jamfile, but it's used for maintenance
  177. # purposes, there's no library to build and install.
  178. all-libraries = [ set.difference $(all-libraries) : function_types ] ;
  179. local rule explicit-alias ( id : targets + )
  180. {
  181. alias $(id) : $(targets) ;
  182. explicit $(id) ;
  183. }
  184. # First, the complicated libraries: where the target name in Jamfile is
  185. # different from its directory name.
  186. explicit-alias prg_exec_monitor : libs/test/build//boost_prg_exec_monitor ;
  187. explicit-alias test_exec_monitor : libs/test/build//boost_test_exec_monitor ;
  188. explicit-alias unit_test_framework : libs/test/build//boost_unit_test_framework ;
  189. explicit-alias bgl-vis : libs/graps/build//bgl-vis ;
  190. explicit-alias serialization : libs/serialization/build//boost_serialization ;
  191. explicit-alias wserialization : libs/serialization/build//boost_wserialization ;
  192. for local l in $(all-libraries)
  193. {
  194. if ! $(l) in test graph serialization
  195. {
  196. explicit-alias $(l) : libs/$(l)/build//boost_$(l) ;
  197. }
  198. }
  199. alias headers : : : : <include>. ;
  200. # Decides which libraries are to be installed by looking at --with-<library>
  201. # --without-<library> arguments. Returns the list of directories under "libs"
  202. # which must be built and installed.
  203. #
  204. rule libraries-to-install ( existing-libraries * )
  205. {
  206. local argv = [ modules.peek : ARGV ] ;
  207. local with-parameter = [ MATCH --with-(.*) : $(argv) ] ;
  208. local without-parameter = [ MATCH --without-(.*) : $(argv) ] ;
  209. if ! $(with-parameter) && ! $(without-parameter)
  210. {
  211. # Nothing is specified on command line. See if maybe
  212. # project-config.jam has some choices.
  213. local project-config-libs = [ modules.peek project-config : libraries ] ;
  214. with-parameter = [ MATCH --with-(.*) : $(project-config-libs) ] ;
  215. without-parameter = [ MATCH --without-(.*) : $(project-config-libs) ] ;
  216. }
  217. # Do some checks.
  218. if $(with-parameter) && $(without-parameter)
  219. {
  220. ECHO "error: both --with-<library> and --without-<library> specified" ;
  221. EXIT ;
  222. }
  223. local wrong = [ set.difference $(with-parameter) : $(existing-libraries) ] ;
  224. if $(wrong)
  225. {
  226. ECHO "error: wrong library name '$(wrong[1])' in the --with-<library> option." ;
  227. EXIT ;
  228. }
  229. local wrong = [ set.difference $(without-parameter) : $(existing-libraries) ] ;
  230. if $(wrong)
  231. {
  232. ECHO "error: wrong library name '$(wrong[1])' in the --without-<library> option." ;
  233. EXIT ;
  234. }
  235. if $(with-parameter)
  236. {
  237. return [ set.intersection $(existing-libraries) : $(with-parameter) ] ;
  238. }
  239. else
  240. {
  241. return [ set.difference $(existing-libraries) : $(without-parameter) ] ;
  242. }
  243. }
  244. # What kind of layout are we doing?
  245. layout = [ MATCH "^--layout=(.*)" : [ modules.peek : ARGV ] ] ;
  246. layout ?= versioned ;
  247. layout-$(layout) = true ;
  248. # Possible stage only location.
  249. local stage-locate = [ MATCH "^--stagedir=(.*)" : [ modules.peek : ARGV ] ] ;
  250. stage-locate ?= stage ;
  251. path-constant BOOST_STAGE_LOCATE : $(stage-locate) ;
  252. # Python location.
  253. local python-root = [ MATCH "^--with-python-root=(.*)" : [ modules.peek : ARGV ]
  254. ] ;
  255. PYTHON_ROOT ?= $(python-root) ;
  256. # Select the libraries to install.
  257. libraries = [ libraries-to-install $(all-libraries) ] ;
  258. if --show-libraries in [ modules.peek : ARGV ]
  259. {
  260. ECHO "The following libraries require building:" ;
  261. for local l in $(libraries)
  262. {
  263. ECHO " - $(l)" ;
  264. }
  265. EXIT ;
  266. }
  267. # Custom build ID.
  268. local build-id = [ MATCH "^--buildid=(.*)" : [ modules.peek : ARGV ] ] ;
  269. if $(build-id)
  270. {
  271. constant BUILD_ID : [ regex.replace $(build-id) "[*\\/:.\"\' ]" "_" ] ;
  272. }
  273. # This rule is called by Boost.Build to determine the name of target. We use it
  274. # to encode the build variant, compiler name and boost version in the target
  275. # name.
  276. #
  277. rule tag ( name : type ? : property-set )
  278. {
  279. if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB
  280. {
  281. if $(layout) = versioned
  282. {
  283. local result = [ common.format-name
  284. <base> <toolset> <threading> <runtime> -$(BOOST_VERSION_TAG)
  285. -$(BUILD_ID)
  286. : $(name) : $(type) : $(property-set) ] ;
  287. # Optionally add version suffix. On NT, library with version suffix
  288. # will not be recognized by linkers. On CYGWIN, we get strage
  289. # duplicate symbol errors when library is generated with version
  290. # suffix. On OSX, version suffix is not needed -- the linker expects
  291. # the libFoo.1.2.3.dylib format. AIX linkers do not accept version
  292. # suffixes either. Pgi compilers can not accept library with version
  293. # suffix.
  294. if $(type) = SHARED_LIB &&
  295. ( ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) &&
  296. ! ( [ $(property-set).get <toolset> ] in pgi ) )
  297. {
  298. result = $(result).$(BOOST_VERSION) ;
  299. }
  300. return $(result) ;
  301. }
  302. else
  303. {
  304. local result = [ common.format-name
  305. <base>
  306. -$(BUILD_ID)
  307. : $(name) : $(type) : $(property-set) ] ;
  308. # Optionally add version suffix. On NT, library with version suffix
  309. # will not be recognized by linkers. On CYGWIN, we get strage
  310. # duplicate symbol errors when library is generated with version
  311. # suffix. On OSX, version suffix is not needed -- the linker expects
  312. # the libFoo.1.2.3.dylib format. AIX linkers do not accept version
  313. # suffixes either. Pgi compilers can not accept library with version
  314. # suffix.
  315. if $(type) = SHARED_LIB &&
  316. ( ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) &&
  317. ! ( [ $(property-set).get <toolset> ] in pgi ) )
  318. {
  319. result = $(result).$(BOOST_VERSION) ;
  320. }
  321. return $(result) ;
  322. }
  323. }
  324. }
  325. # Install to system location.
  326. install-requirements = <install-source-root>$(BOOST_ROOT)/boost ;
  327. if $(layout-versioned)
  328. {
  329. install-requirements += <install-header-subdir>boost-$(BOOST_VERSION_TAG)/boost ;
  330. }
  331. else
  332. {
  333. install-requirements += <install-header-subdir>boost ;
  334. }
  335. if [ modules.peek : NT ]
  336. {
  337. install-requirements += <install-default-prefix>C:/Boost ;
  338. }
  339. else if [ modules.peek : UNIX ]
  340. {
  341. install-requirements += <install-default-prefix>/usr/local ;
  342. }
  343. local headers =
  344. # The .SUNWCCh files are present in tr1 include directory and have to be installed,
  345. # see http://lists.boost.org/Archives/boost/2007/05/121430.php
  346. [ path.glob-tree $(BOOST_ROOT)/boost : *.hpp *.ipp *.h *.inc *.SUNWCCh : CVS .svn ]
  347. [ path.glob-tree $(BOOST_ROOT)/boost/compatibility/cpp_c_headers : c* : CVS .svn ]
  348. [ path.glob boost/tr1/tr1 : * : bcc32 sun CVS .svn ]
  349. ;
  350. # Complete install.
  351. package.install install-proper
  352. : $(install-requirements) <install-no-version-symlinks>on
  353. :
  354. : libs/$(libraries)/build
  355. : $(headers)
  356. ;
  357. explicit install-proper ;
  358. # Install just library.
  359. install stage-proper
  360. : libs/$(libraries)/build
  361. : <location>$(stage-locate)/lib
  362. <install-dependencies>on <install-type>LIB
  363. <install-no-version-symlinks>on
  364. ;
  365. explicit stage-proper ;
  366. if $(layout-versioned) && ( [ modules.peek : NT ] || [ modules.peek : UNIX ] )
  367. {
  368. rule make-unversioned-links ( project name ? : property-set : sources * )
  369. {
  370. local result ;
  371. local filtered ;
  372. local pattern ;
  373. local nt = [ modules.peek : NT ] ;
  374. # Collect the libraries that have the version number in 'filtered'.
  375. for local s in $(sources)
  376. {
  377. local m ;
  378. if $(nt)
  379. {
  380. m = [ MATCH "(.*[.]lib)" : [ $(s).name ] ] ;
  381. }
  382. else
  383. {
  384. m = [ MATCH "(.*[.]so[.0-9]+)" "(.*[.]dylib)" "(.*[.]a)" :
  385. [ $(s).name ] ] ;
  386. }
  387. if $(m)
  388. {
  389. filtered += $(s) ;
  390. }
  391. }
  392. # Create links without version.
  393. for local s in $(filtered)
  394. {
  395. local name = [ $(s).name ] ;
  396. local ea = [ $(s).action ] ;
  397. local ep = [ $(ea).properties ] ;
  398. local a = [ new non-scanning-action $(s) : symlink.ln : $(ep) ] ;
  399. local noversion-file ;
  400. if $(nt)
  401. {
  402. noversion-file = [ MATCH "(.*)-[0-9_]+(.*[.]lib)" : $(name) ] ;
  403. }
  404. else
  405. {
  406. noversion-file =
  407. [ MATCH "(.*)-[0-9_]+(.*[.]so)[.0-9]*" : $(name) ]
  408. [ MATCH "(.*)-[0-9_]+(.*[.]dylib)" : $(name) ]
  409. [ MATCH "(.*)-[0-9_]+(.*[.]a)" : $(name) ]
  410. [ MATCH "(.*)-[0-9_]+(.*[.]dll[.]a)" : $(name) ] ;
  411. }
  412. local new-name =
  413. $(noversion-file[1])$(noversion-file[2]) ;
  414. result += [ new file-target $(new-name) exact : [ $(s).type ] : $(project)
  415. : $(a) ] ;
  416. }
  417. return $(result) ;
  418. }
  419. generate stage-unversioned : stage-proper :
  420. <generating-rule>@make-unversioned-links ;
  421. explicit stage-unversioned ;
  422. generate install-unversioned : install-proper :
  423. <generating-rule>@make-unversioned-links ;
  424. explicit install-unversioned ;
  425. }
  426. else
  427. {
  428. # Create do-nothing aliases.
  429. alias stage-unversioned ;
  430. explicit stage-unversioned ;
  431. alias install-unversioned ;
  432. explicit install-unversioned ;
  433. }
  434. # This is a special metatarget class that handles the --build-type=complete
  435. # option.
  436. class top-level-target : alias-target-class
  437. {
  438. import modules ;
  439. import errors ;
  440. rule __init__ ( name : project : sources * : requirements *
  441. : default-build * : usage-requirements * )
  442. {
  443. alias-target-class.__init__ $(name) : $(project) : $(sources) :
  444. $(requirements) : $(default-build) : $(usage-requirements) ;
  445. local m = [ $(project).project-module ] ;
  446. self.build-type = [ modules.peek $(m) : build-type ] ;
  447. self.minimal-properties = [ property-set.create
  448. <variant>release <threading>multi <link>shared <link>static <runtime-link>shared ] ;
  449. self.complete-properties = [ property-set.create
  450. <variant>debug <variant>release
  451. <threading>single <threading>multi
  452. <link>shared <link>static
  453. <runtime-link>shared <runtime-link>static ] ;
  454. }
  455. rule generate ( property-set )
  456. {
  457. if $(self.build-type) = minimal
  458. {
  459. local expanded = [ targets.apply-default-build $(property-set)
  460. : $(self.minimal-properties) ] ;
  461. return [ build-multiple $(expanded) ] ;
  462. }
  463. else if $(self.build-type) = complete
  464. {
  465. local expanded = [ targets.apply-default-build $(property-set)
  466. : $(self.complete-properties) ] ;
  467. # Filter inappopriate combinations
  468. local filtered ;
  469. for local p in $(expanded)
  470. {
  471. # See comment in handle-static-runtime regarding this logic.
  472. if [ $(p).get <link> ] = shared && [ $(p).get <runtime-link> ] = static
  473. && [ $(p).get <toolset> ] != cw
  474. {
  475. # Skip this
  476. }
  477. else
  478. {
  479. filtered += $(p) ;
  480. }
  481. }
  482. return [ build-multiple $(filtered) ] ;
  483. }
  484. else
  485. {
  486. errors.error "Unknown build type" ;
  487. }
  488. }
  489. rule build-multiple ( property-sets * )
  490. {
  491. local usage-requirements = [ property-set.empty ] ;
  492. local result ;
  493. for local p in $(property-sets)
  494. {
  495. local r = [ alias-target-class.generate $(p) ] ;
  496. if $(r)
  497. {
  498. usage-requirements = [ $(usage-requirements).add $(r[1]) ] ;
  499. result += $(r[2-]) ;
  500. }
  501. }
  502. return $(usage-requirements) [ sequence.unique $(result) ] ;
  503. }
  504. }
  505. alias install : install-proper install-unversioned ;
  506. targets.create-metatarget top-level-target : [ project.current ]
  507. : install
  508. : install-proper install-unversioned
  509. ;
  510. targets.create-metatarget top-level-target : [ project.current ]
  511. : stage
  512. : stage-proper stage-unversioned
  513. ;
  514. explicit install ;
  515. explicit stage ;
  516. stage-abs = [ path.native [ path.root $(stage-locate)/lib [ path.pwd ] ] ] ;
  517. # This target is built by default, and will forward to 'stage'
  518. # after producing some explanations.
  519. targets.create-metatarget top-level-target : [ project.current ]
  520. : forward
  521. : explain stage
  522. ;
  523. message explain :
  524. "\nBuilding C++ Boost.
  525. After the build, the headers will be located at
  526. $(BOOST_ROOT)
  527. The libraries will be located at
  528. $(stage-abs)
  529. Use 'bjam install --prefix=<path>' if you wish to install headers and
  530. libraries to a different location and remove the source tree.\n\n"
  531. ;
  532. # Just build the libraries, don't install them anywhere. This is what happens
  533. # with just "bjam --v2".
  534. alias build_all : libs/$(libraries)/build ;
  535. # This rule should be called from libraries' Jamfiles and will create two
  536. # targets, "install" and "stage", that will install or stage that library. The
  537. # --prefix option is respected, but --with and --without options, naturally, are
  538. # ignored.
  539. #
  540. # - libraries -- list of library targets to install.
  541. #
  542. rule boost-install ( libraries * )
  543. {
  544. package.install install
  545. : <dependency>/boost//install-proper-headers $(install-requirements)
  546. : # No binaries
  547. : $(libraries)
  548. : # No headers, it is handled by the dependency.
  549. ;
  550. install stage : $(libraries) : <location>$(BOOST_STAGE_LOCATE) ;
  551. local c = [ project.current ] ;
  552. local project-module = [ $(c).project-module ] ;
  553. module $(project-module)
  554. {
  555. explicit stage ;
  556. explicit install ;
  557. }
  558. }
  559. # Make project ids of all libraries known.
  560. for local l in $(all-libraries)
  561. {
  562. use-project /boost/$(l) : libs/$(l)/build ;
  563. }
粤ICP备19079148号