Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-06-22 | Remove prerequisite rewriting for c/cxx chaining | Boris Kolpackov | 1 | -2/+1 | |
2015-06-18 | Move path_mtime to filesystem, rename file_mtime, follow symlinks | Boris Kolpackov | 1 | -4/+4 | |
2015-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 1 | -3/+1 | |
2015-06-18 | Move map-key from build2 to libbutl, rename multi-index | Boris Kolpackov | 1 | -3/+3 | |
2015-06-18 | Move some utilities from build2 to libbutl | Boris Kolpackov | 1 | -8/+8 | |
2015-05-22 | Avoid relying on static initialization order | Boris Kolpackov | 1 | -7/+22 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-04-28 | Second iteration over import/export support | Boris Kolpackov | 1 | -3/+3 | |
2015-04-26 | Rework resolved prerequisite targets storage | Boris Kolpackov | 1 | -33/+31 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 1 | -23/+146 | |
2015-04-17 | Search in target group during variable lookup | Boris Kolpackov | 1 | -5/+8 | |
2015-04-17 | Add support for target groups, use to handle obj/obja/objso object targets | Boris Kolpackov | 1 | -60/+84 | |
2015-04-15 | New variables architecture | Boris Kolpackov | 1 | -9/+33 | |
Now operator[] is only used for lookup. | |||||
2015-04-15 | Initial library support | Boris Kolpackov | 1 | -3/+34 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 1 | -7/+7 | |
2015-04-07 | Provide more convenient access to root scope | Boris Kolpackov | 1 | -0/+13 | |
2015-03-25 | Configure/disfigure src_root saving/removing support; fsdir{} injection | Boris Kolpackov | 1 | -0/+3 | |
We can now build out-of-tree. | |||||
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 1 | -34/+36 | |
2015-03-13 | Rename set_key to map_key; feels more correct | Boris Kolpackov | 1 | -1/+1 | |
2015-03-13 | Add support for "first" and "last" execution modes | Boris Kolpackov | 1 | -3/+6 | |
2015-03-13 | Add postponed recipe execution support | Boris Kolpackov | 1 | -7/+10 | |
2015-03-12 | Implement clean operation | Boris Kolpackov | 1 | -16/+64 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 1 | -4/+16 | |
2015-03-09 | Build according to buildspec | Boris Kolpackov | 1 | -7/+29 | |
At this stage operations are still ignored. | |||||
2015-03-03 | Implement new default target logic, canonical directory name (empty value) | Boris Kolpackov | 1 | -3/+3 | |
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-02-27 | Variable assignment, appending support | Boris Kolpackov | 1 | -1/+4 | |
2015-02-24 | Add fsdir{} for creating directories | Boris Kolpackov | 1 | -0/+17 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -21/+53 | |
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 | -4/+4 | |
2015-02-19 | Add support for sourcing/including buildfiles, print, dir{} alias | Boris Kolpackov | 1 | -0/+14 | |
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -3/+18 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -8/+17 | |
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -29/+64 | |
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 | -1/+2 | |
2014-12-10 | Add rules | Boris Kolpackov | 1 | -15/+95 | |
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 | |||||
2014-12-05 | Add support for starting processes, getting file timestamps | Boris Kolpackov | 1 | -2/+7 | |
g++-4.9 -std=c++11 -I.. -o bd bd.cxx process.cxx timestamp.cxx | |||||
2014-12-03 | Initial build tool sketch (simulation) | Boris Kolpackov | 1 | -0/+69 | |
To build: g++-4.9 -std=c++11 -g -I.. -o bd bd.cxx |