Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-08 | Support for disfiguring subprojects | Boris Kolpackov | 1 | -39/+80 | |
2015-04-08 | Configure subprojects that were loaded | Boris Kolpackov | 1 | -29/+54 | |
2015-04-08 | Clarify comment | Boris Kolpackov | 1 | -2/+2 | |
2015-04-08 | Get rid of need to store scope in variable value | Boris Kolpackov | 4 | -39/+20 | |
2015-04-07 | Initial support for amalgamation/subprojects | Boris Kolpackov | 8 | -60/+277 | |
For now both need to be manually specified in src bootstrap. At this stage main() loads any outer root scopes while include loads any inner. | |||||
2015-04-07 | Provide more convenient access to root scope | Boris Kolpackov | 13 | -106/+148 | |
2015-04-02 | Handle "nothing to be done" case for disfigure | Boris Kolpackov | 6 | -22/+59 | |
2015-04-02 | Implement translation of meta/operations to natural language | Boris Kolpackov | 7 | -24/+186 | |
2015-04-02 | Keep previous version of b executable as b-prev until linker succeeds | Boris Kolpackov | 2 | -5/+10 | |
This is useful in case of a linker error in which case the b binary is deleted and we have nothing to use. Also, it is a good idea to manually keep b-save in case of runtime bugs introduced during development. | |||||
2015-04-02 | Add command line option to set verbosity level | Boris Kolpackov | 7 | -5/+1014 | |
-v sets it to 1 (shows actual command lines) --verbose sets it to any value in the 0-5 range | |||||
2015-04-01 | Warn about configured/command line value mismatch | Boris Kolpackov | 5 | -50/+117 | |
Also store configured but unspecified values | |||||
2015-04-01 | Implement initial C++ configuration support | Boris Kolpackov | 9 | -41/+319 | |
2015-03-31 | Rename root_scope to global_scope | Boris Kolpackov | 6 | -28/+28 | |
To avoid confusion with project's root scopes. | |||||
2015-03-31 | Save config.build | Boris Kolpackov | 3 | -2/+68 | |
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 | |