summaryrefslogtreecommitdiffstats
path: root/build2
Commit message (Collapse)AuthorAgeFilesLines
* Add support for multiple variable overridesHEADmasterBoris Kolpackov2019-03-1414-127/+135
| | | | | | | | | | 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-132-4/+19
| | | | | | | | 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
|
* Fix bug in buildfileKaren Arutyunov2019-03-081-1/+1
|
* 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-0849-3/+6537
|
* 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-0730-320/+622
| | | | | | | | 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 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
|
* Change version to 0.10.0-a.0.zBoris Kolpackov2019-02-211-1/+1
|
* 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
|
* 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-244-4/+117
|
* Update copyright yearKaren Arutyunov2019-01-16210-211/+211
|
* 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.
* Fix logic bug in pkg-config shared/static selectionBoris Kolpackov2018-12-271-11/+13
|
* Fix line counting in cc::lexerKaren Arutyunov2018-12-152-2/+4
|
* Fix bug in module interface unit preprocessingBoris Kolpackov2018-12-121-5/+9
|
* Remove unnecessary delete/default declarationsBoris Kolpackov2018-12-031-11/+0
|
* Diagnose separated variable/function nameBoris Kolpackov2018-12-031-1/+3
|
* Adapt to inventing path_match_flagsKaren Arutyunov2018-11-302-5/+6
|
* Regenerate options documentationBoris Kolpackov2018-11-281-3/+3
|
* Add note on potential future improvements to mtime checkBoris Kolpackov2018-11-281-0/+6
|
* Fix couple of man page formatting issuesBoris Kolpackov2018-11-281-4/+4
|
* Add --[no-]mtime-check options to control this behavior at runtimeBoris Kolpackov2018-11-2813-44/+127
| | | | By default the checks are enabled only for the staged toolchain.
* Add config.hxx.in config header, move stage status thereBoris Kolpackov2018-11-285-9/+41
|
* Add --dump <phase> option, omit state dumping from verbosity level 6Boris Kolpackov2018-11-277-17/+74
|