aboutsummaryrefslogtreecommitdiff
path: root/build/scope
AgeCommit message (Collapse)AuthorFilesLines
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov1-6/+5
2015-05-25Store pointer to map key rather than iteratorBoris Kolpackov1-5/+3
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-11Correct copyrightBoris Kolpackov1-1/+1
2015-04-28Remove sourcing triggers support for nowBoris Kolpackov1-17/+0
2015-04-26Rework resolved prerequisite targets storageBoris Kolpackov1-1/+1
2015-04-20Merge config.cxx.* variables into cxx.* when loading cxx moduleBoris Kolpackov1-7/+13
2015-04-15New variables architectureBoris Kolpackov1-11/+41
Now operator[] is only used for lookup.
2015-04-15Initial library supportBoris Kolpackov1-3/+6
2015-04-13Add separate type to represent directory pathsBoris Kolpackov1-11/+22
2015-04-13Add initial import supportBoris Kolpackov1-0/+16
2015-04-07Initial support for amalgamation/subprojectsBoris Kolpackov1-3/+7
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-07Provide more convenient access to root scopeBoris Kolpackov1-16/+20
2015-03-31Rename root_scope to global_scopeBoris Kolpackov1-5/+5
To avoid confusion with project's root scopes.
2015-03-25Configure/disfigure src_root saving/removing support; fsdir{} injectionBoris Kolpackov1-7/+8
We can now build out-of-tree.
2015-03-24Make meta-operations control build loop; add disfigure skeletonBoris Kolpackov1-1/+6
2015-03-20New consolidated load/match/build loopBoris Kolpackov1-1/+7
2015-03-18Implement complete root/base detection, basic module supportBoris Kolpackov1-1/+18
This is the initial groundwork for the configuration support.
2015-03-09Add support for skipping already loaded/included buildfiles at top levelBoris Kolpackov1-0/+8
The idea is that a buildfile shall be included/loaded only once for any given out_root.
2015-03-04Move roots and bases to appropriate scopesBoris Kolpackov1-5/+5
2015-02-27Variable assignment, appending supportBoris Kolpackov1-3/+12
2015-02-26Support for scope parents, initial variable supportBoris Kolpackov1-9/+22
2015-02-24Use prefix_map for scopes, establish root scopeBoris Kolpackov1-4/+3
2014-12-18Initial support for loading dependency info from buildfilesBoris Kolpackov1-0/+59
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