1 | # Copyright Vladimir Prus 2002-2006. |
---|
2 | # Copyright Dave Abrahams 2005-2006. |
---|
3 | # Copyright Rene Rivera 2005-2006. |
---|
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 | |
---|
10 | # Usage: |
---|
11 | # |
---|
12 | # bjam [options] [install|stage] |
---|
13 | # |
---|
14 | # Builds and installs Boost. |
---|
15 | # |
---|
16 | # Targets and Related Options: |
---|
17 | # |
---|
18 | # install Install headers and compiled library files to the |
---|
19 | # ======= configured locations (below). |
---|
20 | # |
---|
21 | # --prefix=<PREFIX> Install architecture independent files here. |
---|
22 | # Default; C:\Boost on Win32 |
---|
23 | # Default; /usr/local on Unix. Linux, etc. |
---|
24 | # |
---|
25 | # --exec-prefix=<EPREFIX> Install architecture dependent files here. |
---|
26 | # Default; <PREFIX> |
---|
27 | # |
---|
28 | # --libdir=<DIR> Install library files here. |
---|
29 | # Default; <EPREFIX>/lib |
---|
30 | # |
---|
31 | # --includedir=<HDRDIR> Install header files here. |
---|
32 | # Default; <PREFIX>/include |
---|
33 | # |
---|
34 | # stage Build and install only compiled library files |
---|
35 | # ===== to the stage directory. |
---|
36 | # |
---|
37 | # --stagedir=<STAGEDIR> Install library files here |
---|
38 | # Default; ./stage |
---|
39 | # |
---|
40 | # Other Options: |
---|
41 | # |
---|
42 | # --builddir=DIR Build in this location instead of building |
---|
43 | # within the distribution tree. Recommended! |
---|
44 | # |
---|
45 | # --toolset=toolset Indicates the toolset to build with. |
---|
46 | # |
---|
47 | # --show-libraries Displays the list of Boost libraries that require |
---|
48 | # build and installation steps, then exit. |
---|
49 | # |
---|
50 | # --layout=<layout> Determines whether to choose library names |
---|
51 | # and header locations such that multiple |
---|
52 | # versions of Boost or multiple compilers can |
---|
53 | # be used on the same system. |
---|
54 | # |
---|
55 | # versioned (default) - Names of boost |
---|
56 | # binaries include the Boost version |
---|
57 | # number and the name and version of the |
---|
58 | # compiler. Boost headers are installed |
---|
59 | # in a subdirectory of <HDRDIR> whose |
---|
60 | # name contains the Boost version |
---|
61 | # number. |
---|
62 | # |
---|
63 | # system - Binaries names do not include |
---|
64 | # the Boost version number or the name |
---|
65 | # and version number of the compiler. |
---|
66 | # Boost headers are installed directly |
---|
67 | # into <HDRDIR>. This option is |
---|
68 | # intended for system integrators who |
---|
69 | # are building distribution packages. |
---|
70 | # |
---|
71 | # --buildid=ID Adds the specified ID to the name of built |
---|
72 | # libraries. The default is to not add anything. |
---|
73 | # |
---|
74 | # --help This message. |
---|
75 | # |
---|
76 | # --with-<library> Build and install the specified <library> |
---|
77 | # If this option is used, only libraries |
---|
78 | # specified using this option will be built. |
---|
79 | # |
---|
80 | # --without-<library> Do not build, stage, or install the specified |
---|
81 | # <library>. By default, all libraries are built. |
---|
82 | |
---|
83 | # TODO: |
---|
84 | # - handle boost version |
---|
85 | # - handle python options such as pydebug |
---|
86 | |
---|
87 | import modules ; |
---|
88 | import set ; |
---|
89 | import stage ; |
---|
90 | import package ; |
---|
91 | import path ; |
---|
92 | import common ; |
---|
93 | import os ; |
---|
94 | import regex ; |
---|
95 | import errors ; |
---|
96 | import "class" : new ; |
---|
97 | import common ; |
---|
98 | |
---|
99 | constant BOOST_VERSION : 1.34.1 ; |
---|
100 | |
---|
101 | local version-tag = [ MATCH "^([^.]+)[.]([^.]+)[.]([^.]+)" : $(BOOST_VERSION) ] ; |
---|
102 | if $(version-tag[3]) = 0 |
---|
103 | { |
---|
104 | version-tag = $(version-tag[1-2]) ; |
---|
105 | } |
---|
106 | |
---|
107 | constant BOOST_VERSION_TAG : $(version-tag:J="_") ; |
---|
108 | |
---|
109 | local default-build ; |
---|
110 | if $(__file__:D) = "" |
---|
111 | { |
---|
112 | default-build = |
---|
113 | debug release |
---|
114 | <threading>single <threading>multi |
---|
115 | <link>shared <link>static |
---|
116 | ; |
---|
117 | |
---|
118 | if [ os.name ] = NT |
---|
119 | { |
---|
120 | default-build += <runtime-link>shared <runtime-link>static ; |
---|
121 | } |
---|
122 | } |
---|
123 | else |
---|
124 | { |
---|
125 | default-build = |
---|
126 | debug |
---|
127 | ; |
---|
128 | } |
---|
129 | |
---|
130 | |
---|
131 | rule handle-static-runtime ( properties * ) |
---|
132 | { |
---|
133 | # This property combination is dangerous. |
---|
134 | # Ideally, we'd add constraint to default build, |
---|
135 | # so that user can build with property combination |
---|
136 | # by hand. But we don't have any 'constraint' mechanism |
---|
137 | # for default-build, so disable such builds in requirements. |
---|
138 | |
---|
139 | # For CW, static runtime is needed so that |
---|
140 | # std::locale works. |
---|
141 | if <link>shared in $(properties) |
---|
142 | && <runtime-link>static in $(properties) |
---|
143 | && ! ( <toolset>cw in $(properties) ) |
---|
144 | { |
---|
145 | return <build>no ; |
---|
146 | } |
---|
147 | } |
---|
148 | |
---|
149 | |
---|
150 | project boost |
---|
151 | : requirements <include>. |
---|
152 | # disable auto-linking for all targets here, |
---|
153 | # primarily because it caused troubles with V2 |
---|
154 | <define>BOOST_ALL_NO_LIB=1 |
---|
155 | # Used to encode variant in target name. See the |
---|
156 | # 'tag' rule below. |
---|
157 | <tag>@$(__name__).tag |
---|
158 | <conditional>@handle-static-runtime |
---|
159 | |
---|
160 | : usage-requirements <include>. |
---|
161 | : build-dir bin.v2 |
---|
162 | : default-build $(default-build) |
---|
163 | ; |
---|
164 | |
---|
165 | # Setup convenient aliases for all libraries. |
---|
166 | |
---|
167 | all-libraries = |
---|
168 | [ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ] ] |
---|
169 | ; |
---|
170 | |
---|
171 | # First, the complicated libraries: where the target name in |
---|
172 | # Jamfile is different from directory name. |
---|
173 | alias prg_exec_monitor : libs/test/build//boost_prg_exec_monitor ; |
---|
174 | alias test_exec_monitor : libs/test/build//boost_test_exec_monitor ; |
---|
175 | alias unit_test_framework : libs/test/build//boost_unit_test_framework ; |
---|
176 | alias bgl-vis : libs/graps/build//bgl-vis ; |
---|
177 | alias serialization : libs/serialization/build//boost_serialization ; |
---|
178 | alias wserialization : libs/serialization/build//boost_wserialization ; |
---|
179 | |
---|
180 | explicit prg_exec_monitor test_exec_monitor unit_test_framework |
---|
181 | bgl-vis serialization wserialization ; |
---|
182 | |
---|
183 | for local l in $(all-libraries) |
---|
184 | { |
---|
185 | if ! $(l) in test graph serialization |
---|
186 | { |
---|
187 | alias $(l) : libs/$(l)/build//boost_$(l) ; |
---|
188 | explicit $(l) ; |
---|
189 | } |
---|
190 | } |
---|
191 | |
---|
192 | alias headers : : : : <include>. ; |
---|
193 | |
---|
194 | |
---|
195 | # Decides which libraries are to be installed by looking at --with-<library> |
---|
196 | # --without-<library> arguments. Returns the list of directories under "libs" |
---|
197 | # which must be built at installed. |
---|
198 | rule libraries-to-install ( existing-libraries * ) |
---|
199 | { |
---|
200 | local argv = [ modules.peek : ARGV ] ; |
---|
201 | local with-parameter = [ MATCH --with-(.*) : $(argv) ] ; |
---|
202 | local without-parameter = [ MATCH --without-(.*) : $(argv) ] ; |
---|
203 | |
---|
204 | # Do some checks |
---|
205 | if $(with-parameter) && $(without-parameter) |
---|
206 | { |
---|
207 | ECHO "error: both --with-<library> and --without-<library> specified" ; |
---|
208 | EXIT ; |
---|
209 | } |
---|
210 | |
---|
211 | local wrong = [ set.difference $(with-parameter) : $(existing-libraries) ] ; |
---|
212 | if $(wrong) |
---|
213 | { |
---|
214 | ECHO "error: wrong library name '$(wrong[1])' in the --with-<library> option." ; |
---|
215 | EXIT ; |
---|
216 | } |
---|
217 | local wrong = [ set.difference $(without-parameter) : $(existing-libraries) ] ; |
---|
218 | if $(wrong) |
---|
219 | { |
---|
220 | ECHO "error: wrong library name '$(wrong[1])' in the --without-<library> option." ; |
---|
221 | EXIT ; |
---|
222 | } |
---|
223 | |
---|
224 | if $(with-parameter) |
---|
225 | { |
---|
226 | return [ set.intersection $(existing-libraries) : $(with-parameter) ] ; |
---|
227 | } |
---|
228 | else |
---|
229 | { |
---|
230 | return [ set.difference $(existing-libraries) : $(without-parameter) ] ; |
---|
231 | } |
---|
232 | } |
---|
233 | |
---|
234 | # what kind of layout are we doing? |
---|
235 | layout = [ MATCH "^--layout=(.*)" : [ modules.peek : ARGV ] ] ; |
---|
236 | layout ?= versioned ; |
---|
237 | layout-$(layout) = true ; |
---|
238 | |
---|
239 | # possible stage only location |
---|
240 | local stage-locate = [ MATCH "^--stagedir=(.*)" : [ modules.peek : ARGV ] ] ; |
---|
241 | stage-locate ?= stage ; |
---|
242 | |
---|
243 | path-constant BOOST_STAGE_LOCATE : $(stage-locate) ; |
---|
244 | |
---|
245 | |
---|
246 | # location of python |
---|
247 | local python-root = [ MATCH "^--with-python-root=(.*)" : [ modules.peek : ARGV ] ] ; |
---|
248 | PYTHON_ROOT ?= $(python-root) ; |
---|
249 | |
---|
250 | # Select the libraries to install. |
---|
251 | libraries = [ libraries-to-install $(all-libraries) ] ; |
---|
252 | |
---|
253 | if --show-libraries in [ modules.peek : ARGV ] |
---|
254 | { |
---|
255 | ECHO "The following libraries require building:" ; |
---|
256 | for local l in $(libraries) |
---|
257 | { |
---|
258 | ECHO " - $(l)" ; |
---|
259 | } |
---|
260 | EXIT ; |
---|
261 | } |
---|
262 | |
---|
263 | # Custom build ID. |
---|
264 | local build-id = [ MATCH "^--buildid=(.*)" : [ modules.peek : ARGV ] ] ; |
---|
265 | if $(build-id) |
---|
266 | { |
---|
267 | constant BUILD_ID : [ regex.replace $(build-id) "[*\\/:.\"\' ]" "_" ] ; |
---|
268 | } |
---|
269 | |
---|
270 | # This rule is called by Boost.Build to determine the name of |
---|
271 | # target. We use it to encode build variant, compiler name and |
---|
272 | # boost version in the target name |
---|
273 | rule tag ( name : type ? : property-set ) |
---|
274 | { |
---|
275 | if $(type) in STATIC_LIB SHARED_LIB IMPORT_LIB |
---|
276 | { |
---|
277 | if $(layout) = versioned |
---|
278 | { |
---|
279 | local result = [ common.format-name |
---|
280 | <base> <toolset> <threading> <runtime> -$(BOOST_VERSION_TAG) |
---|
281 | -$(BUILD_ID) |
---|
282 | : $(name) : $(type) : $(property-set) ] ; |
---|
283 | |
---|
284 | # Optionally add version suffix. |
---|
285 | # On NT, library with version suffix won't be recognized |
---|
286 | # by linkers. On CYGWIN, we get strage duplicate symbol |
---|
287 | # errors when library is generated with version suffix. |
---|
288 | # On OSX, version suffix is not needed -- the linker expets |
---|
289 | # libFoo.1.2.3.dylib format. |
---|
290 | # AIX linkers don't accept version suffixes either. |
---|
291 | if $(type) = SHARED_LIB && |
---|
292 | ! ( [ $(property-set).get <target-os> ] in windows cygwin darwin aix ) |
---|
293 | { |
---|
294 | result = $(result).$(BOOST_VERSION) ; |
---|
295 | } |
---|
296 | |
---|
297 | return $(result) ; |
---|
298 | } |
---|
299 | else |
---|
300 | { |
---|
301 | return [ common.format-name |
---|
302 | <base> <threading> <runtime> -$(BUILD_ID) |
---|
303 | : $(name) : $(type) : $(property-set) ] ; |
---|
304 | } |
---|
305 | } |
---|
306 | } |
---|
307 | |
---|
308 | # Install to system location. |
---|
309 | |
---|
310 | local install-requirements = |
---|
311 | <install-source-root>boost |
---|
312 | ; |
---|
313 | if $(layout-versioned) |
---|
314 | { |
---|
315 | install-requirements += <install-header-subdir>boost-$(BOOST_VERSION_TAG)/boost ; |
---|
316 | } |
---|
317 | else |
---|
318 | { |
---|
319 | install-requirements += <install-header-subdir>boost ; |
---|
320 | } |
---|
321 | if [ modules.peek : NT ] |
---|
322 | { |
---|
323 | install-requirements += <install-default-prefix>C:/Boost ; |
---|
324 | } |
---|
325 | else if [ modules.peek : UNIX ] |
---|
326 | { |
---|
327 | install-requirements += <install-default-prefix>/usr/local ; |
---|
328 | } |
---|
329 | |
---|
330 | local headers = |
---|
331 | [ path.glob-tree boost : *.hpp *.ipp *.h *.inc : CVS ] |
---|
332 | [ path.glob-tree boost/compatibility/cpp_c_headers : c* : CVS ] |
---|
333 | [ path.glob-tree boost/test/utils/runtime : *.cpp : CVS ] |
---|
334 | [ path.glob-tree boost/spirit/tree : |
---|
335 | parsetree.dtd : CVS ] |
---|
336 | [ path.glob-tree boost/tr1/tr1 : |
---|
337 | algorithm array bitset complex deque exception fstream functional |
---|
338 | iomanip ios iostream istream iterator limits list locale map |
---|
339 | memory new numeric ostream queue random regex set sstream stack |
---|
340 | stdexcept streambuf string strstream tuple type_traits typeinfo |
---|
341 | utility valarray vector *.SUNWCCh : CVS ] |
---|
342 | ; |
---|
343 | |
---|
344 | |
---|
345 | # Complete install |
---|
346 | package.install install-proper |
---|
347 | : $(install-requirements) <install-no-version-symlinks>on |
---|
348 | : |
---|
349 | : libs/$(libraries)/build |
---|
350 | : $(headers) |
---|
351 | ; |
---|
352 | explicit install-proper ; |
---|
353 | |
---|
354 | # Install just library. |
---|
355 | install stage-proper |
---|
356 | : libs/$(libraries)/build |
---|
357 | : <location>$(stage-locate)/lib |
---|
358 | <install-dependencies>on <install-type>LIB |
---|
359 | <install-no-version-symlinks>on |
---|
360 | ; |
---|
361 | explicit stage-proper ; |
---|
362 | |
---|
363 | |
---|
364 | if $(layout-versioned) |
---|
365 | && ( [ modules.peek : NT ] || [ modules.peek : UNIX ] ) |
---|
366 | { |
---|
367 | rule make-unversioned-links ( project name ? : property-set : sources * ) |
---|
368 | { |
---|
369 | local result ; |
---|
370 | local filtered ; |
---|
371 | local pattern ; |
---|
372 | local nt = [ modules.peek : NT ] ; |
---|
373 | |
---|
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]+)" "(.*[.]a)" : [ $(s).name ] ] ; |
---|
385 | } |
---|
386 | if $(m) |
---|
387 | { |
---|
388 | filtered += $(s) ; |
---|
389 | } |
---|
390 | } |
---|
391 | |
---|
392 | # Create hardlinks 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 = [ |
---|
399 | new non-scanning-action $(s) : common.hard-link : $(ep) ] ; |
---|
400 | |
---|
401 | local noversion-file ; |
---|
402 | if $(nt) |
---|
403 | { |
---|
404 | noversion-file = [ MATCH "(.*)-[0-9_]+([.]lib)" : $(name) ] ; |
---|
405 | } |
---|
406 | else |
---|
407 | { |
---|
408 | noversion-file = |
---|
409 | [ MATCH "(.*)-[0-9_]+([.]so)[.0-9]*" : $(name) ] |
---|
410 | [ MATCH "(.*)-[0-9_]+([.]a)" : $(name) ] |
---|
411 | [ MATCH "(.*)-[0-9_]+([.]dll[.]a)" : $(name) ] ; |
---|
412 | } |
---|
413 | |
---|
414 | local new-name = |
---|
415 | $(noversion-file[1])$(noversion-file[2]) ; |
---|
416 | result += [ new file-target $(new-name) exact : [ $(s).type ] : $(project) |
---|
417 | : $(a) ] ; |
---|
418 | |
---|
419 | } |
---|
420 | return $(result) ; |
---|
421 | } |
---|
422 | |
---|
423 | generate stage-unversioned : stage-proper : |
---|
424 | <generating-rule>@make-unversioned-links ; |
---|
425 | explicit stage-unversioned ; |
---|
426 | |
---|
427 | generate install-unversioned : install-proper : |
---|
428 | <generating-rule>@make-unversioned-links ; |
---|
429 | explicit install-unversioned ; |
---|
430 | } |
---|
431 | else |
---|
432 | { |
---|
433 | # Create do-nothing aliases |
---|
434 | alias stage-unversioned ; |
---|
435 | alias install-unversioned ; |
---|
436 | } |
---|
437 | |
---|
438 | alias install : install-proper install-unversioned ; |
---|
439 | alias stage : stage-proper stage-unversioned ; |
---|
440 | explicit install ; |
---|
441 | explicit stage ; |
---|
442 | |
---|
443 | |
---|
444 | # Just build the libraries, don't install them anywhere. |
---|
445 | # This is what happens with just "bjam --v2". |
---|
446 | alias build_all : libs/$(libraries)/build ; |
---|
447 | |
---|
448 | # This rule should be called from libraries' Jamfiles and will |
---|
449 | # create two targets, "install" and "stage", that will install |
---|
450 | # or stage that library. The --prefix option is respected, by |
---|
451 | # --with and --without options, naturally, are ignored. |
---|
452 | # |
---|
453 | # - libraries -- list of library targets to install. |
---|
454 | rule boost-install ( libraries * ) |
---|
455 | { |
---|
456 | package.install install |
---|
457 | : <dependency>/boost//install-headers $(install-requirements) |
---|
458 | : # No binaries |
---|
459 | : $(libraries) |
---|
460 | : # No headers, it's handled by the dependency |
---|
461 | ; |
---|
462 | |
---|
463 | install stage : $(libraries) : <location>$(BOOST_STAGE_LOCATE) ; |
---|
464 | |
---|
465 | local c = [ project.current ] ; |
---|
466 | local project-module = [ $(c).project-module ] ; |
---|
467 | module $(project-module) |
---|
468 | { |
---|
469 | explicit stage ; |
---|
470 | } |
---|
471 | } |
---|
472 | |
---|
473 | # Make project ids of all libraries known. |
---|
474 | for local l in $(libraries) |
---|
475 | { |
---|
476 | use-project /boost/$(l) : libs/$(l)/build ; |
---|
477 | } |
---|