Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-17 | Add support for target groups, use to handle obj/obja/objso object targets | Boris Kolpackov | 1 | -95/+148 | |
2015-04-15 | New variables architecture | Boris Kolpackov | 1 | -11/+1 | |
Now operator[] is only used for lookup. | |||||
2015-04-15 | Initial library support | Boris Kolpackov | 1 | -36/+66 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 1 | -4/+4 | |
2015-04-08 | Inherit list_value directly from names | Boris Kolpackov | 1 | -1/+1 | |
2015-04-07 | Provide more convenient access to root scope | Boris Kolpackov | 1 | -26/+30 | |
2015-04-01 | Implement initial C++ configuration support | Boris Kolpackov | 1 | -26/+108 | |
2015-03-27 | Rework dependency state dump support | Boris Kolpackov | 1 | -4/+4 | |
We now have a combined (scopes, variables, and targets) dump. | |||||
2015-03-25 | Configure/disfigure src_root saving/removing support; fsdir{} injection | Boris Kolpackov | 1 | -8/+19 | |
We can now build out-of-tree. | |||||
2015-03-12 | Implement clean operation | Boris Kolpackov | 1 | -21/+63 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 1 | -19/+19 | |
2015-03-04 | Move roots and bases to appropriate scopes | Boris Kolpackov | 1 | -6/+23 | |
2015-03-02 | Clean up clang warnings | Boris Kolpackov | 1 | -3/+3 | |
2015-02-23 | Rename "select" to "apply" | Boris Kolpackov | 1 | -3/+3 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -148/+99 | |
Now the rule is fully responsible for searching, matching, and building of prerequisites. | |||||
2015-02-20 | Rename 'directory' to 'dir' in target, prerequisite | Boris Kolpackov | 1 | -6/+6 | |
2015-02-20 | Rework extension handling logic | Boris Kolpackov | 1 | -0/+4 | |
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-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -42/+34 | |
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -52/+159 | |
2015-01-15 | Implement rule ambiguity detection | Boris Kolpackov | 1 | -2/+2 | |
Also establish the infrastructure for rule hinting | |||||
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -3/+24 | |
2015-01-08 | Implement tracing support | Boris Kolpackov | 1 | -10/+46 | |
Also use to-relative path translation in diagnostics. | |||||
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -33/+83 | |
Also a new iteration on the overall architecture. Now, for the first time, build can read the buildfile and build itself. g++-4.9 -std=c++14 -g -I.. -o bd bd.cxx algorithm.cxx scope.cxx parser.cxx lexer.cxx target.cxx prerequisite.cxx rule.cxx native.cxx cxx/target.cxx cxx/rule.cxx process.cxx timestamp.cxx path.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx ../../../build/scope.cxx ../../../build/target.cxx ../../../build/native.cxx ../../../build/prerequisite.cxx ../../../build/path.cxx ../../../build/timestamp.cxx | |||||
2014-12-11 | Improve diagnostics and error handling | Boris Kolpackov | 1 | -25/+30 | |
g++-4.9 -std=c++14 -g -I.. -o bd bd.cxx target.cxx native.cxx rule.cxx cxx/rule.cxx cxx/target.cxx process.cxx timestamp.cxx path.cxx | |||||
2014-12-11 | Initial implementation of dependency injection (g++ -M output) | Boris Kolpackov | 1 | -3/+143 | |
2014-12-10 | Add rules | Boris Kolpackov | 1 | -0/+260 | |
g++-4.9 -std=c++11 -g -I.. -o bd bd.cxx target.cxx native.cxx rule.cxx cxx/rule.cxx cxx/target.cxx process.cxx timestamp.cxx path.cxx |