Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-06-17 | Add libraries to "ok" prerequisites for synthesized object file targets | Boris Kolpackov | 1 | -2/+5 | |
2015-06-17 | Cosmetic change | Boris Kolpackov | 1 | -2/+1 | |
2015-05-25 | Store pointer to map key rather than iterator | Boris Kolpackov | 2 | -6/+4 | |
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-22 | Get rid of gcc, clang warnings (-Wall) | Boris Kolpackov | 10 | -16/+19 | |
2015-05-22 | Avoid relying on static initialization order | Boris Kolpackov | 4 | -36/+49 | |
2015-05-22 | Some hoop-jumping to make clang happy | Boris Kolpackov | 3 | -3/+7 | |
2015-05-22 | Qualify nullptr_t with std:: | Boris Kolpackov | 2 | -2/+2 | |
2015-05-22 | Add missing return | Boris Kolpackov | 1 | -1/+1 | |
2015-05-22 | Add bootstrap script, INSTALL file | Boris Kolpackov | 4 | -5/+65 | |
2015-05-11 | Use project instead of project_name variable | Boris Kolpackov | 1 | -1/+1 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 90 | -91/+91 | |
2015-04-29 | Get rid of on-demand configuration for now | Boris Kolpackov | 6 | -66/+48 | |
2015-04-29 | Add support for setting target-specific variables from buildfiles | Boris Kolpackov | 6 | -133/+209 | |
2015-04-29 | Update global scope config.import.* value to avoid warning | Boris Kolpackov | 1 | -11/+15 | |
2015-04-28 | Remove sourcing triggers support for now | Boris Kolpackov | 2 | -38/+0 | |
2015-04-28 | Make config module implicitly load config.build if exists | Boris Kolpackov | 2 | -17/+9 | |
2015-04-28 | Use config.import.* instead of config.* for importing | Boris Kolpackov | 1 | -1/+1 | |
2015-04-28 | Second iteration over import/export support | Boris Kolpackov | 10 | -67/+259 | |
2015-04-28 | Add support for iteration over path components | Boris Kolpackov | 3 | -0/+128 | |
2015-04-27 | Add support for specifying library link order | Boris Kolpackov | 5 | -33/+149 | |
2015-04-26 | Cleanup cxx.link rule | Boris Kolpackov | 1 | -15/+1 | |
2015-04-26 | Rework resolved prerequisite targets storage | Boris Kolpackov | 14 | -420/+317 | |
2015-04-26 | Cover multiple backup copies | Boris Kolpackov | 1 | -1/+1 | |
2015-04-24 | Take one on library linking | Boris Kolpackov | 7 | -51/+238 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 26 | -524/+1162 | |
2015-04-20 | Merge config.cxx.* variables into cxx.* when loading cxx module | Boris Kolpackov | 7 | -41/+97 | |
2015-04-20 | Automatically decide when to print relative/absolute paths | Boris Kolpackov | 13 | -80/+135 | |
2015-04-17 | Improve diagnostics | Boris Kolpackov | 1 | -1/+2 | |
2015-04-17 | Tune buildspec heuristics | Boris Kolpackov | 1 | -4/+7 | |
2015-04-17 | Search in target group during variable lookup | Boris Kolpackov | 2 | -8/+15 | |
2015-04-17 | Add support for target groups, use to handle obj/obja/objso object targets | Boris Kolpackov | 19 | -324/+598 | |
2015-04-15 | New variables architecture | Boris Kolpackov | 15 | -116/+202 | |
Now operator[] is only used for lookup. | |||||
2015-04-15 | Initial library support | Boris Kolpackov | 11 | -76/+200 | |
2015-04-13 | Add separate type to represent directory paths | Boris Kolpackov | 43 | -533/+606 | |
2015-04-13 | Add initial import support | Boris Kolpackov | 11 | -178/+425 | |
2015-04-08 | Inherit list_value directly from names | Boris Kolpackov | 7 | -33/+31 | |
2015-04-08 | Add note to generated config.build about inherited configuration | Boris Kolpackov | 1 | -3/+15 | |
2015-04-08 | Distinguish between undefined and null variables | Boris Kolpackov | 3 | -27/+51 | |
2015-04-08 | Support for disfiguring subprojects | Boris Kolpackov | 1 | -39/+80 | |
2015-04-08 | Configure subprojects that were loaded | Boris Kolpackov | 1 | -29/+54 | |
2015-04-08 | Clarify comment | Boris Kolpackov | 1 | -2/+2 | |
2015-04-08 | Get rid of need to store scope in variable value | Boris Kolpackov | 4 | -39/+20 | |
2015-04-07 | Initial support for amalgamation/subprojects | Boris Kolpackov | 8 | -60/+277 | |
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 | 13 | -106/+148 | |
2015-04-02 | Handle "nothing to be done" case for disfigure | Boris Kolpackov | 6 | -22/+59 | |
2015-04-02 | Implement translation of meta/operations to natural language | Boris Kolpackov | 7 | -24/+186 | |
2015-04-02 | Keep previous version of b executable as b-prev until linker succeeds | Boris Kolpackov | 2 | -5/+10 | |
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-02 | Add command line option to set verbosity level | Boris Kolpackov | 7 | -5/+1014 | |
-v sets it to 1 (shows actual command lines) --verbose sets it to any value in the 0-5 range | |||||
2015-04-01 | Warn about configured/command line value mismatch | Boris Kolpackov | 5 | -50/+117 | |
Also store configured but unspecified values | |||||
2015-04-01 | Implement initial C++ configuration support | Boris Kolpackov | 9 | -41/+319 | |