Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-07-22 | Fix testscript touch builtin some more | Boris Kolpackov | 1 | -3/+1 | |
2017-07-22 | Increase target data pad size | Boris Kolpackov | 2 | -3/+3 | |
2017-07-22 | Fix testscript touch builtin test | Karen Arutyunov | 1 | -1/+1 | |
2017-07-22 | Implement detection of ignorable changes (whitespaces, comments) | Boris Kolpackov | 12 | -182/+359 | |
2017-07-21 | Use binary mode when pre-parsing translation unit | Boris Kolpackov | 1 | -2/+3 | |
Failed that, the module export position we obtain cannot be reliably seeked to. | |||||
2017-07-21 | Adjust GCC module option name (-fmodule-file) | Boris Kolpackov | 1 | -1/+1 | |
2017-07-21 | Unset VC's IFCPATH if we are using custom std.* modules | Boris Kolpackov | 2 | -10/+48 | |
2017-07-21 | Fix and improve modules test | Boris Kolpackov | 1 | -1/+3 | |
2017-07-21 | Keep partially preprocessed output around if using modules | Boris Kolpackov | 1 | -27/+52 | |
Since with modules we may have to recompile and otherwise unchanged translation unit because of a BMI change. | |||||
2017-07-19 | Add support for fail, warn, info, text directives | Boris Kolpackov | 2 | -1/+43 | |
2017-07-19 | Add support for custom std.* modules in VC | Boris Kolpackov | 1 | -16/+48 | |
2017-07-19 | Add support for explicit fsdir{} specification | Boris Kolpackov | 2 | -14/+37 | |
2017-07-17 | Allow independent wildcard patterns in a group | Karen Arutyunov | 3 | -13/+32 | |
2017-07-13 | Change config.* to config.guess config.sub in buildfile | Karen Arutyunov | 1 | -3/+3 | |
2017-07-13 | Add hxx prerequisite type in test buildfiles | Karen Arutyunov | 10 | -13/+15 | |
2017-07-12 | Make use of wildcards in buildfiles | Karen Arutyunov | 19 | -148/+32 | |
2017-07-05 | Keep track of translation unit type, make own BMI for impl unit first | Boris Kolpackov | 3 | -36/+65 | |
2017-06-29 | Pass entire BMI graph, not only direct imports and re-exports | Boris Kolpackov | 3 | -30/+102 | |
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-28 | Update to reflect new GCC signature for C++ modules branch | Boris Kolpackov | 1 | -1/+1 | |
2017-06-27 | Add support for regex function family | Karen Arutyunov | 13 | -24/+623 | |
2017-06-26 | Add support for $path_search() and $path_match() | Karen Arutyunov | 13 | -38/+467 | |
2017-06-26 | Make path value type to be base for dir_path | Karen Arutyunov | 2 | -7/+10 | |
2017-06-26 | Further C++ modules support documentation | Boris Kolpackov | 1 | -2/+113 | |
2017-06-24 | Make VC compatible with 'export module M;' by fixing up preprocessed output | Boris Kolpackov | 6 | -13/+66 | |
2017-06-23 | Don't treat mxx{} as cc-source | Boris Kolpackov | 2 | -4/+4 | |
If we do it, then the link rule will refuse to match when modules are disabled (in which case mxx{} should be treated as a header). | |||||
2017-06-22 | Add extra support for symbol exporting in modularized projects | Boris Kolpackov | 6 | -4/+74 | |
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-22 | Update manual with initial modules support | Boris Kolpackov | 1 | -0/+502 | |
2017-06-21 | Add support for $envvar() function | Karen Arutyunov | 3 | -3/+96 | |
2017-06-21 | Move regex utilities to libbutl | Karen Arutyunov | 6 | -318/+2 | |
2017-06-20 | Adjust search logic for std.* modules | Boris Kolpackov | 1 | -14/+45 | |
1. Don't do fuzzy match for std.* modules (more precisely, for 'std' and std.*). This means if we want to build a std.* module, we have to specify its name explicitly: mxx{std-core}@./: cc.module_name = std.core The idea is that we don't want, say, std.core to be fuzzy-matched to some unrelated core.mxx while #2 below could have done the right thing. 2. We allow such modules to go unresolved with the assumption that they are pre-built and will be found by other means (e.g., VC's IFCPATH). | |||||
2017-06-20 | Build both variants of libraries in modules test | Boris Kolpackov | 1 | -0/+1 | |
2017-06-20 | Force Clang not to reference source files from BMIs, add trace | Boris Kolpackov | 1 | -1/+12 | |
2017-06-20 | Fix bug in bmi{} rule chaining | Boris Kolpackov | 1 | -2/+8 | |
2017-06-19 | Dereference pointer when printing | Boris Kolpackov | 1 | -1/+1 | |
2017-06-19 | Add more examples of wildcard pattern exclusions | Boris Kolpackov | 1 | -0/+14 | |
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 | 7 | -291/+858 | |
2017-06-19 | Fix conditional scope to never be empty | Karen Arutyunov | 1 | -0/+1 | |
2017-06-16 | Fix bug (forward-declared inline function) | Boris Kolpackov | 2 | -32/+26 | |
2017-06-16 | Add support for explicitly specifying module name on mxx{} target | Boris Kolpackov | 5 | -27/+95 | |
2017-06-16 | Clean up module-related diagnostics | Boris Kolpackov | 7 | -11/+64 | |
2017-06-16 | Convert test to new ln builtin | Boris Kolpackov | 1 | -20/+19 | |
2017-06-16 | Store module information in depdb | Boris Kolpackov | 7 | -104/+289 | |
2017-06-15 | Add support for ln testscript builtin | Karen Arutyunov | 5 | -17/+461 | |
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 | 3 | -89/+223 | |
2017-06-14 | Fix modules test | Boris Kolpackov | 1 | -1/+2 | |
2017-06-14 | Get rid of warnings | Boris Kolpackov | 1 | -2/+2 | |
2017-06-14 | Next installment in C++ modules saga: module search, re-export support | Boris Kolpackov | 12 | -103/+585 | |