Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-10-19 | Add find_stem() utility function | Boris Kolpackov | 1 | -0/+14 | |
2019-10-18 | Add ability to specify "compiler mode" options as part of config.{c,cxx} | Boris Kolpackov | 1 | -10/+19 | |
Such options are (normally) not overridden by buildfiles and are passed last (after cc.coptions and {c,cxx}.coptions) in the resulting command lines. They are also cross-hinted between config.c and config.cxx. For example: $ b config.cxx="g++ -m64" | |||||
2019-10-16 | Try to find MSVC installation for absolute cl.exe paths | Boris Kolpackov | 1 | -1/+4 | |
Without this extra logic recursive invocation of the build system (e.g., in tests) will fail to obtain the full environment. | |||||
2019-10-14 | Implement MSVC installation discovery for version 15 (2017) and later | Karen Arutyunov | 1 | -9/+9 | |
In particular, this removes the requirement to build from the Visual Studio command prompt. Note that since MSVC compiler binaries are target-specific (i.e., there are no -m32/-m64 options nor something like /MACHINE), in this case we default to a 64-bit build (a 32-bit build can still be achieved by running from a suitable command prompt). Finally, this mechanism is also used to find Clang bundled with MSVC. | |||||
2019-10-09 | Prepend pattern search paths to PATH when running binutils | Boris Kolpackov | 1 | -15/+19 | |
This way any dependent tools (such as mt.exe that is invoked by link.exe) are first search for in there. | |||||
2019-10-08 | Redo bin pattern as PATH-like search paths rather than fallback directory | Boris Kolpackov | 1 | -2/+15 | |
Also, unlike the fallback directory, the search paths are searched first rather than last. | |||||
2019-10-01 | Adapt to renaming butl::casecmp() to icasecmp() | Karen Arutyunov | 1 | -3/+3 | |
2019-08-30 | Make build_installed const | Boris Kolpackov | 1 | -3/+2 | |
2019-08-28 | Redo build_installed without requiring linking whole archive | Boris Kolpackov | 1 | -2/+0 | |
2019-08-26 | Implement auto-import of development build2 build | Boris Kolpackov | 1 | -0/+6 | |
2019-08-23 | Introduce notion of build context | Boris Kolpackov | 1 | -4/+3 | |
All non-const global state is now in class context and we can now have multiple independent builds going on at the same time. | |||||
2019-08-21 | Implement dynamic loading of build system modules | Boris Kolpackov | 1 | -1/+5 | |
2019-08-07 | Improve deadlock diagnostics (suppress stack trace, reword) | Boris Kolpackov | 1 | -1/+7 | |
2019-08-01 | Fix linkage failure due to inline functions defined in ↵ | Karen Arutyunov | 1 | -1/+1 | |
libbuild2/algorithm.ixx and referred from libbuild2/target.txx | |||||
2019-07-01 | Split build system into library and driver | Boris Kolpackov | 1 | -0/+671 | |