2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00
Commit Graph

2171 Commits

Author SHA1 Message Date
Jurko Gospodnetić
47b22866b8 Minor stylistic Boost Build code changes.
[SVN r45023]
2008-05-02 15:26:44 +00:00
Jurko Gospodnetić
c0f2cc300c Minor stylistic changes.
[SVN r44999]
2008-05-02 00:10:09 +00:00
Jurko Gospodnetić
9ed056bac3 Minor stylistic comment changes.
[SVN r44980]
2008-05-01 17:01:03 +00:00
Jurko Gospodnetić
c36072398f Boost Build comment typo corrections and minor stylistic changes.
[SVN r44975]
2008-05-01 15:09:58 +00:00
Jurko Gospodnetić
9a3718ddc3 Removed trailing spaces from tools/build/v2/build/modifiers.jam.
[SVN r44949]
2008-04-30 20:00:24 +00:00
Jurko Gospodnetić
813db01a9b Comment typo correction.
[SVN r44942]
2008-04-30 19:26:55 +00:00
Jurko Gospodnetić
dfe9dc6ab6 Comment cleanup - both stylistic & typo corrections.
[SVN r44941]
2008-04-30 19:24:04 +00:00
Jurko Gospodnetić
3ee59de995 Typo corrections & minor stylistic comment changes.
[SVN r44900]
2008-04-29 22:49:36 +00:00
Rene Rivera
6df6681c13 Add the test target name to the bjam XML log output to make it easier to match tests to jam targets.
[SVN r44790]
2008-04-26 22:21:50 +00:00
K. Noel Belcourt
35678b5462 Get config tests working (missing -lrt).
[SVN r44768]
2008-04-25 17:37:47 +00:00
K. Noel Belcourt
4bd6b9f554 Force pgi to always link rt lib, ugh.
[SVN r44747]
2008-04-24 04:58:27 +00:00
K. Noel Belcourt
3edb5bc662 Fixup patch to intel-darwin.jam so it looks and
reads a bit better.



[SVN r44746]
2008-04-24 01:40:31 +00:00
K. Noel Belcourt
7ae151c85c Patch PGI to fix config problem (clock_gettime is unresolved
external) and add required macro define for IOV_MAX support.



[SVN r44741]
2008-04-23 16:16:38 +00:00
K. Noel Belcourt
632a5c2db9 Fixed intel-darwin unresolved symbols by changing the
wide integer type from unsigned int (which managles as
a 'j') to an int (which mangles as an 'i').  This
change makes intel-darwin generated code match the 
darwin toolset generated code.

Intel reports this won't be fixed in 10.1 because it's
an ABI breanking chanage so we won't see this patched 
until the 10.2 compilers.



[SVN r44729]
2008-04-23 01:35:01 +00:00
Roland Schwarz
97717fbd0b removed act-as-jamfile, which gives errors when boost.use-project is not invoked from Jamroot file.
[SVN r44691]
2008-04-21 11:46:03 +00:00
Roland Schwarz
3423e10887 relaxed test, ignoring case of drive letter.
Thanks to Mat Marcus for the fix.

[SVN r44551]
2008-04-18 18:11:03 +00:00
Jurko Gospodnetić
7af8ea6a1b Removed an extra unused 'executed' feature attribute.
[SVN r44495]
2008-04-17 11:56:16 +00:00
Jurko Gospodnetić
9178f8d0c4 Minor stylistic comment changes.
[SVN r44436]
2008-04-15 17:44:31 +00:00
Roland Schwarz
11032ed140 Added "contrib" subdirectory for user contributed modules that are not yet fully reviewed.
Added first module: boost.jam for linking to prebuilt (decorated) boost libraries.

[SVN r44411]
2008-04-14 13:27:46 +00:00
Rene Rivera
8a3e1055bc Add multiple requirements for toolset subconditions instead of one composite as they are not supported for conditional requirements. Thanks to Roland for finding the problem.
[SVN r44354]
2008-04-12 19:44:47 +00:00
John Maddock
9d886f8c45 When -lrt is needed, it's needed in *both* single and multi-threaded builds.
[SVN r44347]
2008-04-12 16:02:24 +00:00
Roland Schwarz
ca6ccbc62f Fixed a bug in for seldom used argument <property:/property-name/> in rule format-name.
Added /property-name/ may be a regex.

[SVN r44343]
2008-04-12 11:02:35 +00:00
Jurko Gospodnetić
1b601354c0 Implemented a patch contributed by Igor Nazarenko reimplementing the list_sort() function to use a C qsort() function instead of a hand-crafted merge-sort algorithm. Makes some list sortings (e.g. 1,2,1,2,1,2,1,2,...) extremely faster, in turn significantly speeding up some project builds.
[SVN r44195]
2008-04-11 21:03:06 +00:00
Jurko Gospodnetić
116f956f3c Comment typo correction.
[SVN r44172]
2008-04-11 10:51:43 +00:00
Rene Rivera
69edbd4ede Initial support for cross-compiling to ARM architecture.
[SVN r44167]
2008-04-11 07:50:47 +00:00
Rene Rivera
272cddf6d7 Add support for toolset requirements at the definition level.
[SVN r44166]
2008-04-11 05:36:28 +00:00
Rene Rivera
a70059725f Add ARM architecture/instrustion-set.
[SVN r44139]
2008-04-09 21:20:28 +00:00
Jurko Gospodnetić
d7407a9ee1 Fixed a bug with bjam not handling the '\' root Windows path correctly without its drive letter being specified. One effect could be seen by MkDir rule on such a path always attempting to create its base folder even if that folder already exists. For example if you attempted to create folder '\Projects\XYZ\BuildDir' it would incorrectly think that '\Projects' folder does not exist and attempt to create it - thus causing the whole build to fail due to the underlying OS mkdir command failing.
This was caused by the file_dirscan() function in the filent.c module not working correctly when passed '\' as its dir. It then messed up when formatting its file-selection parameter for the _findfirst()/findfirst() API and constructed it as '\/*' which caused that API to fail and return -1 which was in turn being interpreted as 'file not found'.


[SVN r44088]
2008-04-07 10:32:09 +00:00
Jurko Gospodnetić
556474bbb2 Solved the problem with child process returning the value 259 (Windows constant STILL_ACTIVE) causing bjam never to detect that it exited and therefore keep running in an endless loop. Done by relying on the Windows WaitForMultipleObjects() function to detect when a process has exited instead of GetExitCodeProcess(). The later function's MSDN article (http://msdn2.microsoft.com/en-us/library/ms683189(VS.85).aspx) warns about this problem.
Solved the problem with bjam going into an active wait state, hogging up processor resources, when waiting for one of its child processes to terminate while not all of its available child process slots are being used. To see this bug in action, try compiling a simple C++ program on a 2 processor PC with the -j 2 command-line option and watching how much processor resources bjam uses while linking. Was caused by treating unused process slots as used in the try_wait() function, causing the WaitForMultipleObjects() Windows API call to exit instantly with an error which was then getting incorrectly interpreted as a timeout, starting the whole cycle anew.

  Solved a race condition between bjam's output reading/child process termination detection and the child process's output generation/termination which could have caused bjam not to collect the terminated process's final output.

  Extracted all GetExitCodeProcess() API calls into one location so it no longer gets called in three separate places.

  Minor comment changes in code touched by previous fixes.


[SVN r44087]
2008-04-07 09:55:18 +00:00
Vladimir Prus
55ac085435 Make xsltproc more usable standalone.
* tools/xsltproc.jam (xslt-xsltproc): Bind STYLESHEET.
	(xslt-xsltproc-dir): Likewise.

Thanks to Eric Woodruff for the bug report.


[SVN r44067]
2008-04-06 05:00:28 +00:00
Vladimir Prus
753d256a8b Fix 64-bit static libs on vacpp.
Patch from Christopher Cambly.


[SVN r43994]
2008-04-02 05:21:58 +00:00
Vladimir Prus
42cc564420 Remove leftover debug code
[SVN r43993]
2008-04-02 05:15:43 +00:00
Vladimir Prus
03bbc2448d Ubreak loading of build-system.jam.
[SVN r43991]
2008-04-01 18:39:55 +00:00
Vladimir Prus
a4c0303922 Allow "bjam path/to/file" to work.
[SVN r43986]
2008-04-01 17:40:39 +00:00
K. Noel Belcourt
73ee7119d2 Fix typo (forgot space before semi-colon).
[SVN r43920]
2008-03-29 02:03:29 +00:00
K. Noel Belcourt
bec988cac1 Fix address-model support for 32/64 bit code generation.
Replaced -mcmodel with -m32 / -m64.



[SVN r43900]
2008-03-28 02:10:04 +00:00
Vladimir Prus
12563e5b93 Fix #1698 (http://svn.boost.org/trac/boost/ticket/1698).
* build/virtual-target.jam (register): Ignore
    differences in incidental dependency features.


[SVN r43721]
2008-03-19 10:51:45 +00:00
K. Noel Belcourt
fe18a855d5 A user-config.jam that defined multiple python toolsets exposed
an error in the python.jam init rule.  Moved the feature
definition out of the init rule to avoid the feature redefinition
error.



[SVN r43566]
2008-03-11 17:57:54 +00:00
Vladimir Prus
2020628f5f Fix PCH on OSX
[SVN r43537]
2008-03-07 16:18:13 +00:00
Vladimir Prus
cb15d70fd4 Arrange for HPP source to be scanned for #includes, too.
This fixes PCH not being rebuild when some other headers
included from HPP being compiled change.

Thanks to Pierre-Luc Neron for the bug report.


[SVN r43527]
2008-03-06 06:57:27 +00:00
Vladimir Prus
6a0d9f9b3a Add 'pythonpath' feature to specify additional PYTHONPATH elements.
Make bpl-test correctly set dependencies if used with multiple .pyd
sources.

Patch from Joshua Napoli.


[SVN r43526]
2008-03-06 06:06:17 +00:00
Vladimir Prus
06c5eea393 Recognize that fact, for that for intel-win, <runtime-debuggin>
matters and should be added to the library name.


[SVN r43405]
2008-02-24 12:59:04 +00:00
Rene Rivera
57e521f9da Use the configured python interpreter instead of assuming it's in the path.
[SVN r43336]
2008-02-20 23:01:43 +00:00
Rene Rivera
cf7bf4fe90 Add the <python.interpreter> to all requirements to allow other toolsets to use the currently configured python instead of relying on python being in the path.
[SVN r43335]
2008-02-20 22:50:03 +00:00
Jurko Gospodnetić
c96c83b8cf Made the msvc toolset always explicitly enable or disable rtti support based on the <rtti> feature value instead of only setting it if <rtti>on and depending on it being disabled by default. The original behaviour did not work well with msvc 8.0 for which there was not way to disable rtti support as that compiler enables rtti support by default.
[SVN r43282]
2008-02-16 17:03:54 +00:00
Jurko Gospodnetić
3b2d214ead Added support for compiling C++ programs without RTTI support using the gcc toolset.
[SVN r43281]
2008-02-16 16:53:33 +00:00
Jurko Gospodnetić
cff99a8f17 Corrected comments related to the allowed linker & linker-type values. Minor stylistic changes.
[SVN r43280]
2008-02-16 16:50:42 +00:00
K. Noel Belcourt
014bb9e606 I've added the -single_module option to the intel-darwin.link.dll
action to fix this linker error when linking dylibs:

ld: common symbols not allowed with MH_DYLIB output format with the -multi_module option
boost/bin.v2/libs/system/build/intel-darwin-9.1/debug/macosx-version-10.4/error_code.o 
  definition of common __ZGVZNK5boost6system14error_category7messageEiE1s (size 16)
boost/bin.v2/libs/system/build/intel-darwin-9.1/debug/macosx-version-10.4/error_code.o 
  definition of common __ZZNK5boost6system14error_category7messageEiE1s (size 16)

though I would note that the common symbols problem occurs in a number of
other libraries (test, graph, spirit, ...) as well.



[SVN r43179]
2008-02-08 17:53:50 +00:00
K. Noel Belcourt
23aa013e45 Force PPC Darwin to use fork instead of vfork. This change
requires both the parent and child process to explicitly set
the process group id. Vfork guarantees the child process 
runs to the exec before it releases the parent process.  
Now that we use fork instead of vfork, it's possible for the 
parent to wait on the child process without having the child 
setpgid on itself.  This eliminates spurious hangs on ppc
darwin caused by either a race condition between vfork and
execvp, or a bug in the vfork implementation.

Added a test to ensure we don't try to read from the
stderr pipe descriptor if the descriptor's not valid.



[SVN r43176]
2008-02-08 16:32:35 +00:00
Douglas Gregor
70a5f0acfd Support for non-blocking MPI operations in Python, from Andreas Kloeckner
[SVN r43165]
2008-02-07 21:08:09 +00:00