Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-02 | Implement variable expansion | Boris Kolpackov | 1 | -17/+178 | |
2015-03-02 | Indicate whether token is separated from previous one by whitespaces | Boris Kolpackov | 1 | -1/+1 | |
2015-03-02 | Clean up clang warnings | Boris Kolpackov | 1 | -7/+8 | |
2015-02-27 | Variable assignment, appending support | Boris Kolpackov | 1 | -17/+101 | |
2015-02-24 | Use prefix_map for scopes, establish root scope | Boris Kolpackov | 1 | -5/+20 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -6/+6 | |
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 | 1 | -21/+21 | |
2015-02-20 | Rework extension handling logic | Boris Kolpackov | 1 | -6/+6 | |
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 | 1 | -91/+343 | |
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -58/+29 | |
2015-01-16 | Add support for directory prefixes | Boris Kolpackov | 1 | -15/+53 | |
For example: cxx{driver ../{foo bar}} cxx{driver} ../cxx{foo bar} | |||||
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -58/+5 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -8/+76 | |
2015-01-08 | Implement tracing support | Boris Kolpackov | 1 | -0/+1 | |
Also use to-relative path translation in diagnostics. | |||||
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -19/+155 | |
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-15 | Parse directory scopes | Boris Kolpackov | 1 | -36/+119 | |
2014-12-12 | Initial buildfile parser implementation | Boris Kolpackov | 1 | -0/+167 | |
g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx && ./driver |