Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-02-14 | Enable modules support only for VC 15u5 and up, drop hacks for earlier | Boris Kolpackov | 1 | -48/+10 | |
2018-02-09 | Fix broken test (and few other things) | Boris Kolpackov | 11 | -64/+48 | |
2018-02-05 | Add tests for auto-generated test inputs/outputs | Boris Kolpackov | 11 | -3/+153 | |
2018-02-03 | Get rid of action rule override semantics | Boris Kolpackov | 2 | -3/+2 | |
Instead we now have two more or less separate match states for outer and inner parts of an action. | |||||
2018-01-05 | Add cxx.module_name alias for cc.module_name | Boris Kolpackov | 1 | -2/+2 | |
2017-12-16 | Redo string/stream representation of dir{} name/target | Boris Kolpackov | 1 | -8/+8 | |
Now instead of: dir{foo/bar/} We get: foo/dir{bar/} Which feels more consistent with how we print other names/targets. That is, "directory bar/ in directory foo/" similar how foo/exe{bar} is "executable bar in directory foo/". | |||||
2017-11-30 | Adapt testscripts to build2 output changes | Karen Arutyunov | 1 | -4/+4 | |
2017-11-22 | Enable module re-export tests for Clang | Boris Kolpackov | 1 | -1/+0 | |
This support has been merged into trunk. | |||||
2017-11-20 | Add test for prerequisite-specific variables | Boris Kolpackov | 2 | -0/+76 | |
2017-11-10 | Add $directory(), $base(), $leaf() and $extension() functions | Karen Arutyunov | 1 | -0/+65 | |
2017-11-09 | Add support for for-loop | Boris Kolpackov | 2 | -0/+117 | |
The semantics is similar to the C++11 range-based for: list = 1 2 3 for i: $list print $i Note that there is no scoping of any kind for the loop variable ('i' in the above example). See tests/loop/for.test for some examples/ideas. In the future the plan is to also support more general while-loop as well as break and continue. | |||||
2017-10-03 | Adapt to modularization of libbutl | Karen Arutyunov | 1 | -4/+4 | |
2017-09-29 | Allow pattern group to start with inclusion | Karen Arutyunov | 1 | -29/+85 | |
2017-09-11 | Add ability to pass scope to buildfile functions, add $install.resolve() | Boris Kolpackov | 2 | -0/+38 | |
2017-08-30 | Add $regex.split(), $regex.merge() and $regex.apply() functions | Karen Arutyunov | 1 | -0/+96 | |
2017-08-02 | Change cc.preprocessed to {c,cxx}.preprocessed | Boris Kolpackov | 2 | -8/+8 | |
2017-07-28 | Implement support for linking whole archive | Boris Kolpackov | 1 | -6/+28 | |
2017-07-27 | Initial infrastructure for utility libraries | Boris Kolpackov | 2 | -0/+62 | |
2017-07-24 | Change dir_path/string concatenation semantics | Karen Arutyunov | 2 | -1/+74 | |
2017-07-22 | Fix testscript touch builtin some more | Boris Kolpackov | 1 | -3/+1 | |
2017-07-22 | Fix testscript touch builtin test | Karen Arutyunov | 1 | -1/+1 | |
2017-07-21 | Fix and improve modules test | Boris Kolpackov | 1 | -1/+3 | |
2017-07-17 | Allow independent wildcard patterns in a group | Karen Arutyunov | 1 | -4/+9 | |
2017-07-13 | Add hxx prerequisite type in test buildfiles | Karen Arutyunov | 2 | -2/+2 | |
2017-07-12 | Make use of wildcards in buildfiles | Karen Arutyunov | 8 | -8/+7 | |
2017-06-29 | Pass entire BMI graph, not only direct imports and re-exports | Boris Kolpackov | 1 | -0/+39 | |
All current implementations require access to the entire graph (though Clang embeds the file references so we don't need to pass the options). | |||||
2017-06-27 | Add support for regex function family | Karen Arutyunov | 2 | -0/+260 | |
2017-06-26 | Add support for $path_search() and $path_match() | Karen Arutyunov | 2 | -0/+160 | |
2017-06-24 | Make VC compatible with 'export module M;' by fixing up preprocessed output | Boris Kolpackov | 1 | -0/+11 | |
2017-06-22 | Add extra support for symbol exporting in modularized projects | Boris Kolpackov | 1 | -0/+32 | |
Since modules don't see each other's macros, we can use a single, keyword- like macro for dll-exporting that is managed by the build system (so no need for an "export" header). For example: cxx.features.symexport = true export __symexport void f (); | |||||
2017-06-21 | Add support for $envvar() function | Karen Arutyunov | 1 | -0/+61 | |
2017-06-20 | Build both variants of libraries in modules test | Boris Kolpackov | 1 | -0/+1 | |
2017-06-19 | Make use of exit builtin in modules test | Boris Kolpackov | 1 | -5/+1 | |
2017-06-19 | Add support for exit testscript builtin | Karen Arutyunov | 2 | -1/+401 | |
2017-06-16 | Add support for explicitly specifying module name on mxx{} target | Boris Kolpackov | 1 | -2/+13 | |
2017-06-16 | Clean up module-related diagnostics | Boris Kolpackov | 2 | -3/+3 | |
2017-06-16 | Convert test to new ln builtin | Boris Kolpackov | 1 | -20/+19 | |
2017-06-16 | Store module information in depdb | Boris Kolpackov | 2 | -2/+31 | |
2017-06-15 | Add support for ln testscript builtin | Karen Arutyunov | 2 | -1/+185 | |
2017-06-15 | Enable all module tests for GCC (requires cxx-modules r249216) | Boris Kolpackov | 1 | -8/+4 | |
2017-06-15 | Fix modules test not to run for VC15u0 | Boris Kolpackov | 1 | -3/+8 | |
2017-06-15 | Implement module search in prerequisite libraries | Boris Kolpackov | 1 | -11/+53 | |
2017-06-14 | Fix modules test | Boris Kolpackov | 1 | -1/+2 | |
2017-06-14 | Next installment in C++ modules saga: module search, re-export support | Boris Kolpackov | 1 | -15/+139 | |
2017-06-12 | Don't force C++ modules in tests for VC | Boris Kolpackov | 1 | -1/+4 | |
2017-06-12 | Add initial tests for C++ modules support | Boris Kolpackov | 2 | -0/+115 | |
2017-06-12 | Resolve ambiguity between std:: and butl:: optional | Boris Kolpackov | 1 | -0/+2 | |
2017-06-08 | Add full support for pattern exclusions | Karen Arutyunov | 1 | -2/+3 | |
2017-06-01 | Fix test to use new cleanup wildcard support | Boris Kolpackov | 1 | -13/+13 | |
2017-06-01 | Implement new testscript cleanup wildcards semantics | Karen Arutyunov | 2 | -41/+67 | |