Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-10 | Add reverse_execute_prerequisites() variant | Boris Kolpackov | 1 | -7/+102 | |
2022-03-09 | Rename execute_wait() to execute() | Boris Kolpackov | 1 | -1/+4 | |
The old half-way semantics of execute() wasn't useful. | |||||
2022-03-09 | Parallel implementation of update_during_match_prerequisites() | Boris Kolpackov | 1 | -22/+96 | |
2022-03-08 | Improve performance of update during match for multiple targets | Boris Kolpackov | 1 | -0/+69 | |
2022-03-02 | Add update operation-specific variable with unmatch|match additional values | Boris Kolpackov | 1 | -3/+65 | |
Note that the unmatch (match but do not update) and match (update during match) values are only supported by certain rules (and potentially only for certain prerequisite types). Additionally: - All operation-specific variables are now checked for false as an override for the prerequisite-specific include value. In particular, this can now be used to disable a prerequisite for update, for example: ./: exe{test}: update = false - The cc::link_rule now supports the update=match value for headers and ad hoc prerequisites. In particular, this can be used to make sure all the library headers are updated before matching any of its (or dependent's) object files. | |||||
2022-02-09 | Don't use fallback file_rule to clean real targets | Boris Kolpackov | 1 | -2/+14 | |
2022-02-09 | Add perform_clean_group_extra() | Boris Kolpackov | 1 | -123/+137 | |
2022-02-07 | Make match_inc_dependents() part of public API | Boris Kolpackov | 1 | -1/+1 | |
2022-01-21 | Add search_new() and search_new_locked() variants of search() | Boris Kolpackov | 1 | -0/+22 | |
2021-09-16 | Fix diagnostics corner case in perform_clean_extra() | Boris Kolpackov | 1 | -5/+5 | |
2021-08-05 | Avoid normalizing likely already normalized directories in search_existing() | Boris Kolpackov | 1 | -1/+8 | |
2021-06-08 | Implement ad hoc regex pattern rule support | Boris Kolpackov | 1 | -60/+102 | |
An ad hoc pattern rule consists of a pattern that mimics a dependency declaration followed by one or more recipes. For example: exe{~'/(.*)/'}: cxx{~'/\1/'} {{ $cxx.path -o $path($>) $path($<[0]) }} If a pattern matches a dependency declaration of a target, then the recipe is used to perform the corresponding operation on this target. For example, the following dependency declaration matches the above pattern which means the rule's recipe will be used to update this target: exe{hello}: cxx{hello} While the following declarations do not match the above pattern: exe{hello}: c{hello} # Type mismatch. exe{hello}: cxx{howdy} # Name mismatch. On the left hand side of `:` in the pattern we can have a single target or an ad hoc target group. The single target or the first (primary) ad hoc group member must be a regex pattern (~). The rest of the ad hoc group members can be patterns or substitutions (^). For example: <exe{~'/(.*)/'} file{^'/\1.map/'}>: cxx{~'/\1/'} {{ $cxx.path -o $path($>[0]) "-Wl,-Map=$path($>[1])" $path($<[0]) }} On the left hand side of `:` in the pattern we have prerequisites which can be patterns, substitutions, or non-patterns. For example: <exe{~'/(.*)/'} file{^'/\1.map/'}>: cxx{~'/\1/'} hxx{^'/\1/'} hxx{common} {{ $cxx.path -o $path($>[0]) "-Wl,-Map=$path($>[1])" $path($<[0]) }} Substitutions on the left hand side of `:` and substitutions and non-patterns on the right hand side are added to the dependency declaration. For example, given the above rule and dependency declaration, the effective dependency is going to be: <exe{hello} file{hello.map>: cxx{hello} hxx{hello} hxx{common} | |||||
2021-06-08 | Redo fallback reverse operation machinery in ad hoc recipes | Boris Kolpackov | 1 | -13/+30 | |
2021-05-12 | Keep phase locked while working own queue | Boris Kolpackov | 1 | -11/+5 | |
2021-04-02 | Add support for propagating project environment | Boris Kolpackov | 1 | -25/+51 | |
2021-03-19 | Redo entering of src directories into scope_map | Boris Kolpackov | 1 | -2/+2 | |
2020-12-14 | Fix bug in create_new_target_locked() | Karen Arutyunov | 1 | -1/+1 | |
2020-12-11 | Add search_locked() versions of search() functions | Boris Kolpackov | 1 | -0/+11 | |
2020-12-03 | Add match_rule() in addition to match_recipe() | Boris Kolpackov | 1 | -6/+2 | |
2020-11-06 | Add support for test timeouts | Karen Arutyunov | 1 | -1/+1 | |
2020-10-20 | Add operation callback for adhoc rule match and apply | Boris Kolpackov | 1 | -11/+33 | |
2020-09-24 | Give hints for common causes of "no rule to update ..." error | Boris Kolpackov | 1 | -1/+50 | |
2020-08-25 | Fix bug in interaction of unmatch logic with target groups | Boris Kolpackov | 1 | -1/+1 | |
2020-08-10 | Allow holes in group_view array | Boris Kolpackov | 1 | -1/+9 | |
2020-07-13 | Add ability to extend rule interface in source-compatible manner | Boris Kolpackov | 1 | -3/+6 | |
2020-06-08 | Hash ad hoc prerequsites for ad hoc recipe change detection | Boris Kolpackov | 1 | -6/+1 | |
2020-06-08 | Fix handling of inner/outer operations in ad hoc recipes machinery | Boris Kolpackov | 1 | -11/+12 | |
2020-06-05 | Add ability to specify ad hoc recipe actions | Boris Kolpackov | 1 | -12/+24 | |
We are reusing the buildspec syntax for that. | |||||
2020-05-28 | Allow calling certain search_existing() versions during load phase | Boris Kolpackov | 1 | -5/+0 | |
This is necessary for $target.path() implementation. | |||||
2020-05-27 | Initial support for ad hoc recipes (still work in progress) | Boris Kolpackov | 1 | -6/+52 | |
2020-04-30 | Rename target::member to target::adhoc_member | Boris Kolpackov | 1 | -5/+9 | |
2020-04-27 | Add another search_existing() overload | Boris Kolpackov | 1 | -0/+16 | |
2020-03-20 | Tighten add_adhoc_member() against races | Boris Kolpackov | 1 | -14/+17 | |
2020-03-17 | Fix backlinking code to follow symlinks in hardlink targets | Boris Kolpackov | 1 | -2/+11 | |
2020-03-17 | Rename all find*(variable) to lookup*(variable) | Boris Kolpackov | 1 | -1/+1 | |
Now we consistently use term "lookup" for variable value lookup. At some point we should also rename type lookup to binding and get rid of all the lookup_type aliases. | |||||
2020-03-10 | Force hard links inside backlinked DLL assembly directory | Boris Kolpackov | 1 | -3/+5 | |
Windows does not allow the manifest file inside to be a symlink for some (probably security) reasons. | |||||
2020-02-07 | Drop copyright notice from source code | Karen Arutyunov | 1 | -1/+0 | |
2019-11-16 | Handle dry-run mode in backlinking implementation | Boris Kolpackov | 1 | -11/+25 | |
2019-08-30 | Cutoff diagnostics stack when switching to nested context | Boris Kolpackov | 1 | -0/+4 | |
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 1 | -139/+179 | |
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time. | |||||
2019-08-15 | Implement libs_paths symlinking support on Windows | Boris Kolpackov | 1 | -9/+3 | |
Also, temporarily enable libs_paths::link on Windows for testing. | |||||
2019-08-14 | Use new mkanylink() from libbutl | Boris Kolpackov | 1 | -38/+39 | |
2019-08-01 | Fix linkage failure due to inline functions defined in ↵ | Karen Arutyunov | 1 | -1/+67 | |
libbuild2/algorithm.ixx and referred from libbuild2/target.txx | |||||
2019-07-05 | Preserve timestamp when copying backlink | Boris Kolpackov | 1 | -1/+2 | |
2019-07-01 | Split build system into library and driver | Boris Kolpackov | 1 | -0/+2205 | |