Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-04-20 | Automatically decide when to print relative/absolute paths | Boris Kolpackov | 1 | -2/+2 | |
2015-04-02 | Keep previous version of b executable as b-prev until linker succeeds | Boris Kolpackov | 1 | -2/+8 | |
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-01 | Implement initial C++ configuration support | Boris Kolpackov | 1 | -1/+1 | |
2015-03-30 | Initial support for command line variables | Boris Kolpackov | 1 | -3/+4 | |
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 1 | -1/+1 | |
2015-03-20 | New consolidated load/match/build loop | Boris Kolpackov | 1 | -2/+4 | |
2015-03-18 | Implement complete root/base detection, basic module support | Boris Kolpackov | 1 | -2/+3 | |
This is the initial groundwork for the configuration support. | |||||
2015-03-12 | Implement clean operation | Boris Kolpackov | 1 | -1/+1 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 1 | -3/+3 | |
2015-03-07 | Add support for buildspec | Boris Kolpackov | 1 | -3/+3 | |
2015-02-27 | Variable assignment, appending support | Boris Kolpackov | 1 | -3/+3 | |
2015-02-24 | Sort out diagnostics for mkdir | Boris Kolpackov | 1 | -1/+1 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -2/+2 | |
Now the rule is fully responsible for searching, matching, and building of prerequisites. | |||||
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -2/+1 | |
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -19/+1 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -1/+3 | |
2015-01-08 | Implement tracing support | Boris Kolpackov | 1 | -2/+4 | |
Also use to-relative path translation in diagnostics. | |||||
2015-01-05 | Rename 'bd' to 'b' | Boris Kolpackov | 1 | -2/+2 | |
What the heck, let's be bold, right? | |||||
2015-01-05 | Determine work, home, and {src,out}_{root,base} directories | Boris Kolpackov | 1 | -2/+3 | |
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -1/+17 | |
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 | Initial lexer implementation for buildfiles | Boris Kolpackov | 1 | -0/+1 | |