Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-05-19 | Update copyright year | Karen Arutyunov | 1 | -1/+1 | |
2018-01-08 | Implement compiler_info caching | Boris Kolpackov | 1 | -2/+2 | |
2018-01-08 | Complete runtime/stdlib detection | Boris Kolpackov | 1 | -1/+5 | |
2017-12-16 | Improve process execution diagnostics by reusing run_*() API | Boris Kolpackov | 1 | -1/+4 | |
2017-12-09 | Fix git commit id calculation | Boris Kolpackov | 1 | -1/+1 | |
2017-10-03 | Extract system header search paths from GCC or compatible | Boris Kolpackov | 1 | -0/+19 | |
2017-07-29 | Fix bug in installed import library search on Windows | Boris Kolpackov | 1 | -2/+3 | |
2017-07-27 | Fix to print to diagnostics stream instead of std::cerr | Karen Arutyunov | 1 | -4/+2 | |
2017-06-12 | Remove few unused lambda captures | Boris Kolpackov | 1 | -2/+2 | |
2017-05-01 | Add hxx extension for headers | Karen Arutyunov | 1 | -10/+10 | |
2017-03-02 | Implement parallel match | Boris Kolpackov | 1 | -40/+35 | |
2017-02-13 | Use target:as<> instead of static_cast for target casting | Boris Kolpackov | 1 | -3/+3 | |
2017-02-13 | Tighten code that operates during both search/match and execute | Boris Kolpackov | 1 | -11/+29 | |
2017-02-13 | Pass const target& to recipes | Boris Kolpackov | 1 | -1/+1 | |
2017-01-19 | Get rid of extension_pool | Boris Kolpackov | 1 | -7/+6 | |
2017-01-05 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2016-11-04 | Adopt to auto_fd introduced to libbutl fdstreams and process | Karen Arutyunov | 1 | -1/+2 | |
2016-09-15 | Add io_error alias for std::ios_base::failure | Karen Arutyunov | 1 | -1/+1 | |
2016-08-28 | Factor library search/processing out to cc::common | Boris Kolpackov | 1 | -5/+5 | |
2016-08-27 | Clean up library export, make c and cxx modules project root only | Boris Kolpackov | 1 | -3/+6 | |
So now c and cxx modules can only be loaded in project root scope (normally root.build). Also, the c.std and cxx.std must now be set *before* loading the module to take effect. This means we won't be able to handle old buildfiles anymore but old versions of build2 should be able to handle new *.std placement. | |||||
2016-08-26 | Add pkg-config support for import installed | Boris Kolpackov | 1 | -1/+0 | |
Redesign library importing/exporting while at it. | |||||
2016-08-24 | Handle *.export.libs, distinguish interface and implementation dependencies | Boris Kolpackov | 1 | -9/+13 | |
A library dependency on another libraries is either "interface" or "implementation". If it is interface, then everyone who links to this library should also link to the interface dependency, explicitly. A good example of an interface dependency is a library API that is called in inline functions. Interface dependencies of a library should be explicitly listed in the *.export.libs (where we can also list target names). So the typical usage will be along these lines: import int_libs = libfoo%lib{foo} import int_libs += ... import imp_libs = libbar%lib{bar} import imp_libs += ... lib{baz}: ... $int_libs $imp_libs lib{baz}: cxx.export.libs = $int_libs | |||||
2016-08-22 | Cache process_path, use fallback search directory for binutils | Boris Kolpackov | 1 | -8/+8 | |
2016-08-12 | Implement support for C compilation | Boris Kolpackov | 1 | -0/+342 | |
We now have two new modules: cc (c-common) and c. |