aboutsummaryrefslogtreecommitdiff
path: root/build2
AgeCommit message (Collapse)AuthorFilesLines
2019-03-18Change BUILD2_STAGE to falseBoris Kolpackov1-1/+1
2019-03-14Add support for multiple variable overridesBoris Kolpackov14-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
2019-03-14Change variable::override list order, make doubly-linkedBoris Kolpackov3-17/+48
2019-03-13Don't preserve comments (/C) in MSVC preprocessed outputBoris Kolpackov1-5/+7
This appear to "enable" some additional VC preprocessor bug that are now triggered by the VC 16.0 xsmf_control.h header.
2019-03-13Cutoff append/prepend overrides that come before assignment overrideBoris Kolpackov2-4/+19
For example: $ b x+=1 x=2 x+=3 Should result in '2 3', not '1 2 3'.
2019-03-13Add workarounds for all cl releases until 20.00Karen Arutyunov2-5/+5
2019-03-12Tweak resolution of relative targets from export.libsBoris Kolpackov1-4/+8
2019-03-12Diagnose out of project inclusionBoris Kolpackov1-5/+14
2019-03-12Recognize MSVC 16 (19.20) runtime as 14.2Boris Kolpackov1-3/+11
2019-03-08Fix bug in buildfileKaren Arutyunov1-1/+1
2019-03-08Use real package names rather than sanitized ones for diagnostics in version ↵Karen Arutyunov3-25/+44
module
2019-03-08Use new setup for unit testsKaren Arutyunov49-3/+6537
2019-03-07Initialize initial parser stateBoris Kolpackov1-5/+6
2019-03-07Move bunch of root scope-only data members to root_extraBoris Kolpackov19-95/+124
2019-03-07Add support for alternative build file/directory naming schemeBoris Kolpackov30-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).
2019-03-05Align with latest bdep-newKaren Arutyunov1-11/+16
2019-03-01Add another note on inconsistent compiler behavior diagnosticsBoris Kolpackov1-0/+6
2019-02-28Add note on inconsistent compiler behavior diagnosticsBoris Kolpackov1-0/+2
2019-02-27Escape backslashes in GNU options file on WindowsBoris Kolpackov1-2/+22
2019-02-27Use options (aka response) file on Windows if link command line is too longBoris Kolpackov1-10/+111
2019-02-21Change version to 0.10.0-a.0.zBoris Kolpackov1-1/+1
2019-02-19Change BUILD2_STAGE to falseBoris Kolpackov1-1/+1
2019-02-18Skip subdirs logic if installation path includes file nameBoris Kolpackov1-10/+21
2019-02-15Check for /usr/local/include in addition to /usr/includeBoris Kolpackov1-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.
2019-02-15Don't try to pass utility's loptions/libs when linking static libraryBoris Kolpackov2-13/+36
2019-02-12Normalize directory when building include prefix mapBoris Kolpackov1-0/+6
2019-02-12Cosmetic changeBoris Kolpackov1-5/+8
2019-02-05Fix bug in reprocessing logicBoris Kolpackov1-5/+5
2019-02-03Fix bug in bin moduleBoris Kolpackov1-1/+1
2019-01-30Add support for $ and shortcut operator in dependency constraintKaren Arutyunov2-23/+28
2019-01-24Loosen GCC modules enablement requirementsBoris Kolpackov1-2/+1
2019-01-24Add testscript sleep builtinKaren Arutyunov4-4/+117
2019-01-16Update copyright yearKaren Arutyunov210-211/+211
2019-01-14Diagnose target names with multiple trailing slashes as invalidBoris Kolpackov4-7/+17
2019-01-14Fix VC warningBoris Kolpackov1-1/+1
2019-01-12Adapt to standard version API changeKaren Arutyunov2-8/+14
2019-01-10Print list of available operations and meta-operations in infoBoris Kolpackov2-9/+33
2019-01-09Fix bug in cc rules matchingBoris Kolpackov1-1/+1
2019-01-09Tighten cc rules matchingBoris Kolpackov6-28/+34
Specifically, make sure the rule does not match if there is a c-common prerequisites that it doesn't recognize.
2018-12-27Fix logic bug in pkg-config shared/static selectionBoris Kolpackov1-11/+13
2018-12-15Fix line counting in cc::lexerKaren Arutyunov2-2/+4
2018-12-12Fix bug in module interface unit preprocessingBoris Kolpackov1-5/+9
2018-12-03Remove unnecessary delete/default declarationsBoris Kolpackov1-11/+0
2018-12-03Diagnose separated variable/function nameBoris Kolpackov1-1/+3
2018-11-30Adapt to inventing path_match_flagsKaren Arutyunov2-5/+6
2018-11-28Regenerate options documentationBoris Kolpackov1-3/+3
2018-11-28Add note on potential future improvements to mtime checkBoris Kolpackov1-0/+6
2018-11-28Fix couple of man page formatting issuesBoris Kolpackov1-4/+4
2018-11-28Add --[no-]mtime-check options to control this behavior at runtimeBoris Kolpackov13-44/+127
By default the checks are enabled only for the staged toolchain.
2018-11-28Add config.hxx.in config header, move stage status thereBoris Kolpackov5-9/+41