Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-06-08 | Implement ad hoc regex pattern rule support | Boris Kolpackov | 1 | -4/+6 | |
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-03-16 | Define intermediate build results file cache interface | Boris Kolpackov | 1 | -1/+1 | |
2020-12-11 | Add search_locked() versions of search() functions | Boris Kolpackov | 1 | -0/+18 | |
2020-12-03 | Add match_rule() in addition to match_recipe() | Boris Kolpackov | 1 | -7/+15 | |
2020-07-10 | Relax prerequisite filtering semantics of aliases for clean operation | Boris Kolpackov | 1 | -2/+3 | |
This is analogous to what has been done to test and install a couple of commits before. | |||||
2020-06-25 | Add more instrumentation for unassigned path race | Boris Kolpackov | 1 | -4/+4 | |
2020-05-28 | Allow calling certain search_existing() versions during load phase | Boris Kolpackov | 1 | -3/+7 | |
This is necessary for $target.path() implementation. | |||||
2020-04-30 | Factor recipe to separate header/source files | Boris Kolpackov | 1 | -2/+9 | |
2020-04-27 | Add another search_existing() overload | Boris Kolpackov | 1 | -0/+3 | |
2020-04-27 | Add inject() for injecting additional dependencies during match | Boris Kolpackov | 1 | -0/+7 | |
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 | -1/+2 | |
2019-10-29 | Add forward declaration header for build state types | Boris Kolpackov | 1 | -5/+1 | |
2019-08-26 | Implement updating build system modules | Boris Kolpackov | 1 | -1/+1 | |
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 1 | -10/+17 | |
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-01 | Fix linkage failure due to inline functions defined in ↵ | Karen Arutyunov | 1 | -3/+3 | |
libbuild2/algorithm.ixx and referred from libbuild2/target.txx | |||||
2019-07-01 | Split build system into library and driver | Boris Kolpackov | 1 | -0/+778 | |