Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-30 | Initial support for command line variables | Boris Kolpackov | 7 | -89/+167 | |
2015-03-30 | Add support for configurable pair separator, use @ instead of = in buildspec | Boris Kolpackov | 4 | -57/+42 | |
2015-03-27 | Rework dependency state dump support | Boris Kolpackov | 13 | -64/+142 | |
We now have a combined (scopes, variables, and targets) dump. | |||||
2015-03-25 | Recognize common cases (., .., and dir{}) when deriving out_base | Boris Kolpackov | 1 | -6/+17 | |
2015-03-25 | Configure/disfigure src_root saving/removing support; fsdir{} injection | Boris Kolpackov | 24 | -217/+720 | |
We can now build out-of-tree. | |||||
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 18 | -271/+522 | |
2015-03-20 | New consolidated load/match/build loop | Boris Kolpackov | 17 | -298/+418 | |
2015-03-18 | Implement complete root/base detection, basic module support | Boris Kolpackov | 15 | -53/+482 | |
This is the initial groundwork for the configuration support. | |||||
2015-03-13 | Factor string_table into separate file | Boris Kolpackov | 4 | -96/+124 | |
2015-03-13 | Rename set_key to map_key; feels more correct | Boris Kolpackov | 3 | -13/+13 | |
2015-03-13 | Add support for "first" and "last" execution modes | Boris Kolpackov | 15 | -44/+248 | |
2015-03-13 | Add postponed recipe execution support | Boris Kolpackov | 5 | -18/+61 | |
2015-03-12 | Implement clean operation | Boris Kolpackov | 17 | -190/+584 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 17 | -164/+358 | |
2015-03-09 | Add meta/operation lists, lift operations in buildspec | Boris Kolpackov | 6 | -30/+149 | |
2015-03-09 | Add support for skipping already loaded/included buildfiles at top level | Boris Kolpackov | 5 | -15/+32 | |
The idea is that a buildfile shall be included/loaded only once for any given out_root. | |||||
2015-03-09 | Build according to buildspec | Boris Kolpackov | 9 | -248/+406 | |
At this stage operations are still ignored. | |||||
2015-03-07 | Add support for buildspec | Boris Kolpackov | 7 | -18/+402 | |
2015-03-06 | Add support for lexing and parsing name pairs | Boris Kolpackov | 6 | -46/+218 | |
We will need it for the buildspec and also if/when we support map variable types. | |||||
2015-03-04 | Treat names that end with directory separators as directories | Boris Kolpackov | 2 | -28/+57 | |
2015-03-04 | Move roots and bases to appropriate scopes | Boris Kolpackov | 18 | -111/+424 | |
2015-03-03 | Use names() to handle include/source, support include of directories | Boris Kolpackov | 1 | -20/+51 | |
This gives us variable expansion and directory prefixes. Also, in include, if the path is a directory (either ends with / or has dir{} type), then we append 'buildfile'. | |||||
2015-03-03 | Implement new default target logic, canonical directory name (empty value) | Boris Kolpackov | 6 | -145/+158 | |
The logic is as follows: if we have an explicit current directory target, then that's the default target. Otherwise, we take the first target and use it as a prerequisite to create an implicit current directory target, effectively making it the default target via an alias. If there are no targets in this buildfile, then we don't do anything. | |||||
2015-03-02 | Cleanup to support clang compilation | Boris Kolpackov | 4 | -39/+34 | |
2015-03-02 | Implement variable expansion | Boris Kolpackov | 5 | -20/+230 | |
2015-03-02 | Indicate whether token is separated from previous one by whitespaces | Boris Kolpackov | 5 | -92/+117 | |
2015-03-02 | Implement value lexing mode | Boris Kolpackov | 2 | -20/+67 | |
So that we can do foo=g++ without having to resort to quoting | |||||
2015-03-02 | Clean up clang warnings | Boris Kolpackov | 7 | -18/+19 | |
2015-02-27 | Variable assignment, appending support | Boris Kolpackov | 20 | -54/+493 | |
2015-02-26 | Support for scope parents, initial variable support | Boris Kolpackov | 8 | -19/+113 | |
2015-02-24 | Sort out diagnostics for mkdir | Boris Kolpackov | 4 | -12/+54 | |
2015-02-24 | Use prefix_map for scopes, establish root scope | Boris Kolpackov | 11 | -14/+120 | |
2015-02-24 | Make empty key to always be prefix in prefix_map | Boris Kolpackov | 2 | -7/+10 | |
2015-02-24 | Add fsdir{} for creating directories | Boris Kolpackov | 5 | -1/+103 | |
2015-02-23 | Clean up file names | Boris Kolpackov | 4 | -5/+5 | |
2015-02-23 | Rename "select" to "apply" | Boris Kolpackov | 5 | -12/+12 | |
2015-02-23 | Don't create new target for alias/action/dir prerequisite | Boris Kolpackov | 2 | -3/+18 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 22 | -416/+891 | |
Now the rule is fully responsible for searching, matching, and building of prerequisites. | |||||
2015-02-20 | Get rid of parse_ prefix in parser function names | Boris Kolpackov | 2 | -32/+32 | |
2015-02-20 | Rename 'directory' to 'dir' in target, prerequisite | Boris Kolpackov | 7 | -25/+23 | |
2015-02-20 | Rework extension handling logic | Boris Kolpackov | 7 | -64/+55 | |
We no longer support hxx{vector.}. Rather, the target type can decide, e.g., based on a config variable, whether to append an extension. Also, in the future we may support a syntax to specify that this is a complete name, e.g., hxx{'vector'}. | |||||
2015-02-19 | Add support for sourcing/including buildfiles, print, dir{} alias | Boris Kolpackov | 11 | -121/+504 | |
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 20 | -426/+650 | |
2015-01-16 | Add support for directory prefixes | Boris Kolpackov | 3 | -19/+65 | |
For example: cxx{driver ../{foo bar}} cxx{driver} ../cxx{foo bar} | |||||
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 16 | -219/+384 | |
2015-01-15 | Implement rule ambiguity detection | Boris Kolpackov | 6 | -21/+111 | |
Also establish the infrastructure for rule hinting | |||||
2015-01-15 | Allow specifying prefix_map delimiter as template argument | Boris Kolpackov | 2 | -10/+31 | |
2015-01-14 | Implement prefix_map | Boris Kolpackov | 2 | -0/+161 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 14 | -34/+244 | |
2015-01-08 | Implement tracing support | Boris Kolpackov | 16 | -28/+343 | |
Also use to-relative path translation in diagnostics. |