Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-12-12 | Implement installation of prerequisite shared libraries | Boris Kolpackov | 1 | -4/+3 | |
2015-12-01 | Reimplement define as dynamic derivation rather than alias | Boris Kolpackov | 1 | -1/+0 | |
New syntax: define cli: file The rationale is we need to be able to assign the file extension (using type/pattern-specific variables). And if it is an alias, we will assign it to the original target type. Note that we could still support aliases if we need to. Will need to bring back the id member in target_type that would normally point to itself but for an alias would point to the origin. | |||||
2015-07-15 | Implement project-qualified names/prerequisites, two-stage import | Boris Kolpackov | 1 | -14/+26 | |
2015-06-30 | Group "see through" iteration, take 1 | Boris Kolpackov | 1 | -1/+7 | |
2015-06-22 | Remove prerequisite rewriting for c/cxx chaining | Boris Kolpackov | 1 | -4/+9 | |
2015-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 1 | -1/+1 | |
2015-05-22 | Get rid of gcc, clang warnings (-Wall) | Boris Kolpackov | 1 | -3/+4 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-04-26 | Rework resolved prerequisite targets storage | Boris Kolpackov | 1 | -1/+1 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 1 | -1/+1 | |
2015-04-17 | Add support for target groups, use to handle obj/obja/objso object targets | Boris Kolpackov | 1 | -7/+48 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 1 | -3/+3 | |
2015-02-20 | Rename 'directory' to 'dir' in target, prerequisite | Boris Kolpackov | 1 | -2/+2 | |
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -1/+1 | |
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -1/+11 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -4/+7 | |
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -0/+53 | |
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 |