Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-12 | Add bin.libprefix to override default library prefix | Boris Kolpackov | 1 | -0/+3 | |
2015-12-09 | Add support for specifying additional rpath's | Boris Kolpackov | 1 | -17/+27 | |
For example: b config.bin.rpath=/usr/local/lib | |||||
2015-12-03 | Clean up rule names | Boris Kolpackov | 1 | -25/+28 | |
2015-12-02 | Implement optional module loading | Boris Kolpackov | 2 | -13/+19 | |
The syntax is: using? cli Now each module use results in two bool variables: <module>.loaded and <module>.configured. Also implement variable visibility (the above two variables are limited to project). | |||||
2015-12-01 | Reimplement define as dynamic derivation rather than alias | Boris Kolpackov | 1 | -21/+7 | |
New syntax: define cli: file The rationale is we need to be able to assign the file extension (using type/pattern-specific variables). And if it is an alias, we will assign it to the original target type. Note that we could still support aliases if we need to. Will need to bring back the id member in target_type that would normally point to itself but for an alias would point to the origin. | |||||
2015-12-01 | Implement support for definition target type aliases | Boris Kolpackov | 2 | -24/+31 | |
For example: define cli=file Currently, the semantics is that of a real alias with only name differences that are used for display. See tests/define/buildfile for more use cases. | |||||
2015-09-08 | Rework diagnostics verbosity, add quiet mode/option | Boris Kolpackov | 1 | -1/+1 | |
2015-08-31 | Rework scoping logic | Boris Kolpackov | 1 | -1/+1 | |
Now the src directory is entered into the scope map and points to the same scope as out. This means that targets that are in src, not out (e.g., source files) will "see" rules, variables, etc. This becomes important when we try, for example, to install a source file (say, a header) from src: we need the rule as well as the install.* variables. | |||||
2015-08-29 | New configure meta-operation implementation | Boris Kolpackov | 1 | -5/+9 | |
Now we search and match (but do not execute) a rule for every operation supported by the project. | |||||
2015-08-27 | Dist module/meta-operation initial implementation | Boris Kolpackov | 1 | -7/+5 | |
2015-08-24 | New variable architecture | Boris Kolpackov | 2 | -13/+28 | |
2015-08-14 | Rework meta/operation registration | Boris Kolpackov | 1 | -0/+7 | |
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis. | |||||
2015-08-14 | Fix several issues in outer operation recipe override logic | Boris Kolpackov | 1 | -1/+9 | |
2015-08-03 | match_only rework, part 2 | Boris Kolpackov | 3 | -37/+46 | |
2015-08-03 | match_only and dependents count rework, part 1 | Boris Kolpackov | 1 | -19/+29 | |
2015-07-31 | Cosmetic change | Boris Kolpackov | 1 | -1/+1 | |
2015-07-31 | Essential install module functionality | Boris Kolpackov | 2 | -13/+45 | |
2015-07-24 | Add support for generated test input/output | Boris Kolpackov | 1 | -13/+3 | |
2015-07-22 | Fix postponed re-examination logic | Boris Kolpackov | 1 | -4/+4 | |
Now postponed takes precedence over changed. | |||||
2015-07-20 | Implement pre/post operation support | Boris Kolpackov | 1 | -6/+16 | |
Also, extend execution mode/postponed logic to propagate the postponed target state. At the top, we now re-try postponed targets. This results in the expected behavior when, for example, cleaning two targets with one depending on the other. | |||||
2015-07-20 | Implement support for importing installed libraries | Boris Kolpackov | 1 | -2/+16 | |
2015-07-14 | Add notion of strong/weak amalgamation, make strong new clean boundary | Boris Kolpackov | 1 | -1/+1 | |
2015-07-08 | Implement automatic amalgamation discovery | Boris Kolpackov | 1 | -4/+4 | |
2015-07-07 | Rework module architecture | Boris Kolpackov | 2 | -16/+47 | |
Now the target type and rule maps are in scopes (builtins -- in global scope). We also now have the map of loaded modules in the root scope of each project. | |||||
2015-07-02 | Make few existing file searching optimizations | Boris Kolpackov | 1 | -2/+2 | |
2015-07-01 | Cleanup group "see through" design | Boris Kolpackov | 2 | -8/+15 | |
2015-06-30 | Group "see through" iteration, take 1 | Boris Kolpackov | 2 | -9/+9 | |
2015-06-24 | First take on the cli module plus necessary infrastructure | Boris Kolpackov | 1 | -0/+7 | |
2015-06-22 | Remove prerequisite rewriting for c/cxx chaining | Boris Kolpackov | 1 | -4/+2 | |
2015-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 1 | -1/+1 | |
2015-06-18 | Make cxx.export.* machinery work for library chains | Boris Kolpackov | 1 | -0/+16 | |
2015-05-22 | Get rid of gcc, clang warnings (-Wall) | Boris Kolpackov | 1 | -2/+2 | |
2015-05-22 | Avoid relying on static initialization order | Boris Kolpackov | 1 | -7/+7 | |
2015-05-22 | Some hoop-jumping to make clang happy | Boris Kolpackov | 1 | -0/+2 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 6 | -6/+6 | |
2015-04-29 | Get rid of on-demand configuration for now | Boris Kolpackov | 3 | -23/+36 | |
2015-04-24 | Take one on library linking | Boris Kolpackov | 4 | -20/+97 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 4 | -0/+417 | |