Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-24 | New variable architecture | Boris Kolpackov | 1 | -12/+15 | |
2015-08-17 | Tighten variable_map interface | Boris Kolpackov | 1 | -5/+3 | |
2015-07-15 | Implement project-qualified names/prerequisites, two-stage import | Boris Kolpackov | 1 | -1/+1 | |
2015-07-07 | Rework module architecture | Boris Kolpackov | 1 | -0/+100 | |
Now the target type and rule maps are in scopes (builtins -- in global scope). We also now have the map of loaded modules in the root scope of each project. | |||||
2015-06-18 | Move path and filesystem from build2 to libbutl | Boris Kolpackov | 1 | -2/+2 | |
2015-05-25 | Store pointer to map key rather than iterator | Boris Kolpackov | 1 | -1/+1 | |
Clang's libc++ complains about a map iterator instantiation that has an incomplete value. At the same time, it appears that references (and thus pointers) to map elements are also stable. | |||||
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-04-15 | New variables architecture | Boris Kolpackov | 1 | -5/+22 | |
Now operator[] is only used for lookup. | |||||
2015-04-15 | Initial library support | Boris Kolpackov | 1 | -7/+0 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 1 | -3/+3 | |
2015-04-07 | Initial support for amalgamation/subprojects | Boris Kolpackov | 1 | -3/+5 | |
For now both need to be manually specified in src bootstrap. At this stage main() loads any outer root scopes while include loads any inner. | |||||
2015-04-07 | Provide more convenient access to root scope | Boris Kolpackov | 1 | -9/+26 | |
2015-03-31 | Rename root_scope to global_scope | Boris Kolpackov | 1 | -3/+3 | |
To avoid confusion with project's root scopes. | |||||
2015-03-18 | Implement complete root/base detection, basic module support | Boris Kolpackov | 1 | -3/+3 | |
This is the initial groundwork for the configuration support. | |||||
2015-03-04 | Move roots and bases to appropriate scopes | Boris Kolpackov | 1 | -24/+30 | |
2015-02-27 | Variable assignment, appending support | Boris Kolpackov | 1 | -5/+29 | |
2015-02-26 | Support for scope parents, initial variable support | Boris Kolpackov | 1 | -0/+66 | |
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -0/+12 | |
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 |