Jamroot 22 KB

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