summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add support for multiple variable overridesHEADmasterBoris Kolpackov2019-03-1416-130/+168
| | | | | | | | | | Now we can do: $ b config.cxx.coptions=-O3 config.cxx.coptions=-O0 Or even: $ b config.cxx.coptions=-O3 config.cxx.coptions+=-g
* Change variable::override list order, make doubly-linkedBoris Kolpackov2019-03-143-17/+48
|
* Don't preserve comments (/C) in MSVC preprocessed outputBoris Kolpackov2019-03-131-5/+7
| | | | | This appear to "enable" some additional VC preprocessor bug that are now triggered by the VC 16.0 xsmf_control.h header.
* Cutoff append/prepend overrides that come before assignment overrideBoris Kolpackov2019-03-133-4/+48
| | | | | | | | For example: $ b x+=1 x=2 x+=3 Should result in '2 3', not '1 2 3'.
* Add workarounds for all cl releases until 20.00Karen Arutyunov2019-03-132-5/+5
|
* Tweak resolution of relative targets from export.libsBoris Kolpackov2019-03-121-4/+8
|
* Diagnose out of project inclusionBoris Kolpackov2019-03-121-5/+14
|
* Recognize MSVC 16 (19.20) runtime as 14.2Boris Kolpackov2019-03-121-3/+11
|
* Add note to bootstrap-msvc.batBoris Kolpackov2019-03-111-0/+3
|
* Filter out *.test.cxx in bootstrap-mingw.bat and bootstrap.shKaren Arutyunov2019-03-092-15/+32
|
* Fix bug in buildfileKaren Arutyunov2019-03-081-1/+1
|
* Cosmetic changesBoris Kolpackov2019-03-081-2/+3
|
* Filter out *.test.cxx in bootstrap-msvc.batKaren Arutyunov2019-03-081-1/+6
|
* Filter out *.test.cxx in bootstrap.gmakeBoris Kolpackov2019-03-081-0/+5
|
* Use real package names rather than sanitized ones for diagnostics in version ↵Karen Arutyunov2019-03-083-25/+44
| | | | module
* Use new setup for unit testsKaren Arutyunov2019-03-0861-117/+73
|
* Initialize initial parser stateBoris Kolpackov2019-03-071-5/+6
|
* Move bunch of root scope-only data members to root_extraBoris Kolpackov2019-03-0719-95/+124
|
* Add support for alternative build file/directory naming schemeBoris Kolpackov2019-03-0731-320/+657
| | | | | | | | Now the build/*.build, buildfile, and .buildignore filesystem entries in a project can alternatively (but consistently) be called build2/*.build2, build2file, and .build2ignore. See a note at the beginning of the Project Structure section in the manual for details (motivation, restrictions, etc).
* Align with latest bdep-newKaren Arutyunov2019-03-051-11/+16
|
* Add 'builds: all' value to manifestKaren Arutyunov2019-03-051-1/+1
|
* Update config submoduleBoris Kolpackov2019-03-041-0/+0
|
* Add another note on inconsistent compiler behavior diagnosticsBoris Kolpackov2019-03-011-0/+6
|
* Add note on inconsistent compiler behavior diagnosticsBoris Kolpackov2019-02-281-0/+2
|
* Escape backslashes in GNU options file on WindowsBoris Kolpackov2019-02-271-2/+22
|
* Use options (aka response) file on Windows if link command line is too longBoris Kolpackov2019-02-271-10/+111
|
* Fix typo in NEWS fileBoris Kolpackov2019-02-221-1/+1
|
* Change version to 0.10.0-a.0.zBoris Kolpackov2019-02-213-6/+6
|
* Release version 0.9.0Boris Kolpackov2019-02-192-3/+3
|
* Change BUILD2_STAGE to falseBoris Kolpackov2019-02-191-1/+1
|
* Skip subdirs logic if installation path includes file nameBoris Kolpackov2019-02-181-10/+21
|
* Check for /usr/local/include in addition to /usr/includeBoris Kolpackov2019-02-151-6/+9
| | | | | | Specifically, Apple Clang does not have /usr/include (it has its equivalent in /Applications/.../XcodeDefault.xctoolchain/usr/include/) but does have /usr/local/include.
* Don't try to pass utility's loptions/libs when linking static libraryBoris Kolpackov2019-02-152-13/+36
|
* Normalize directory when building include prefix mapBoris Kolpackov2019-02-121-0/+6
|
* Cosmetic changeBoris Kolpackov2019-02-121-5/+8
|
* Update NEWS fileBoris Kolpackov2019-02-081-0/+125
|
* Update submodulesBoris Kolpackov2019-02-071-0/+0
|
* Fix bug in reprocessing logicBoris Kolpackov2019-02-051-5/+5
|
* Fix bug in bin moduleBoris Kolpackov2019-02-031-1/+1
|
* Add support for $ and shortcut operator in dependency constraintKaren Arutyunov2019-01-302-23/+28
|
* Loosen GCC modules enablement requirementsBoris Kolpackov2019-01-241-2/+1
|
* Add testscript sleep builtinKaren Arutyunov2019-01-2410-8/+165
|
* Update submodulesBoris Kolpackov2019-01-172-0/+0
|
* Update copyright yearKaren Arutyunov2019-01-16388-389/+389
|
* Diagnose target names with multiple trailing slashes as invalidBoris Kolpackov2019-01-144-7/+17
|
* Fix VC warningBoris Kolpackov2019-01-141-1/+1
|
* Adapt to standard version API changeKaren Arutyunov2019-01-122-8/+14
|
* Print list of available operations and meta-operations in infoBoris Kolpackov2019-01-102-9/+33
|
* Fix bug in cc rules matchingBoris Kolpackov2019-01-091-1/+1
|
* Tighten cc rules matchingBoris Kolpackov2019-01-096-28/+34
| | | | | Specifically, make sure the rule does not match if there is a c-common prerequisites that it doesn't recognize.