Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-11 | Add ${c,cxx}.lib_{poptions,libs,rpaths}() functions | Boris Kolpackov | 10 | -105/+391 | |
These functions can be used to query library metadata for options and libraries that should be used when compiling/linking dependent targets, similar to how cc::{compile,link}_rule do it. With this support it should be possible to more or less re-create their semantics in ad hoc recipes. | |||||
2020-11-11 | Make value_traits<bool>::convert() non-modifying | Boris Kolpackov | 2 | -2/+5 | |
2020-11-11 | Expose low-level function registration support | Boris Kolpackov | 2 | -4/+24 | |
2020-11-11 | Add context::current_action() | Boris Kolpackov | 1 | -1/+9 | |
2020-11-06 | Fix mistreating test operation timeout as test timeout in some case | Karen Arutyunov | 1 | -1/+1 | |
2020-11-06 | Add support for test timeouts | Karen Arutyunov | 33 | -184/+1819 | |
2020-11-06 | Fix snapshot extraction for subproject symlinked from git submodule | Karen Arutyunov | 1 | -3/+20 | |
2020-11-06 | Resolve warning | Boris Kolpackov | 1 | -1/+1 | |
2020-11-06 | Keep executable bit on .wasm files when installing | Boris Kolpackov | 1 | -2/+4 | |
2020-11-05 | Initial Emscripten support | Boris Kolpackov | 6 | -535/+803 | |
- Target: wasm32-emscripten (wasm32-unknown-emscripten). - Compiler id: clang-emscripten (type clang, variant emscripten, class gcc). - Ability to build executables (.js plus .wasm) and static libraries (.a). Set executable bit on the .js file (so it can be executed with a suitable binfmt interpreter). - Default config.bin.lib for wasm32-emscripten is static instead of both. - Full C++ exception support is enable unless disabled explicitly by the user with -s DISABLE_EXCEPTION_CATCHING=1|2. - The bin module registers the wasm{} target type for wasm32-emscripten. | |||||
2020-11-04 | Minor terminology tweak | Boris Kolpackov | 1 | -1/+1 | |
2020-11-02 | Set executable bit for ad hoc buildscript rule executable target on POSIX | Karen Arutyunov | 5 | -2/+61 | |
2020-10-28 | Pad config report to maximum name length | Boris Kolpackov | 1 | -10/+32 | |
2020-10-28 | Add missing $builtin.string(int64) | Boris Kolpackov | 1 | -0/+1 | |
2020-10-27 | Tweak dist rule to handle prerequisites outside project | Boris Kolpackov | 1 | -7/+21 | |
2020-10-20 | Add operation callback for adhoc rule match and apply | Boris Kolpackov | 13 | -44/+95 | |
2020-10-15 | Add ability to specify fallback value for NULL substitutions with in.null | Boris Kolpackov | 7 | -20/+60 | |
2020-10-07 | Add ability to specify extra adhoc files for distribution | Boris Kolpackov | 2 | -6/+58 | |
2020-09-29 | Add bootstrap distribution mode (!config.dist.bootstrap=true) | Boris Kolpackov | 6 | -277/+476 | |
In this mode the dist meta-operation does not load the project (but does bootstrap it) and adds all the source files into the distribution only ignoring files and directories that start with a dot. This mode is primarily meant for situation where the project cannot (yet) be loaded due to missing dependencies. | |||||
2020-09-28 | Add $string.trim() function | Boris Kolpackov | 1 | -0/+12 | |
2020-09-24 | Fix target declaration upgrade logic | Boris Kolpackov | 2 | -12/+10 | |
2020-09-24 | Give hints for common causes of "no rule to update ..." error | Boris Kolpackov | 12 | -50/+121 | |
2020-09-24 | Add ability to ignore extra variables in specified_config() | Boris Kolpackov | 2 | -9/+33 | |
2020-09-24 | Add post-boot module function | Boris Kolpackov | 3 | -27/+84 | |
2020-09-22 | Add ability to skip external modules during bootstrap (--no-external-modules) | Boris Kolpackov | 4 | -34/+75 | |
2020-09-15 | Handle infinite output when extracting metadata (GitHub issue #102) | Boris Kolpackov | 1 | -2/+22 | |
2020-09-12 | Regenerate options parsing code | Karen Arutyunov | 1 | -6/+6 | |
2020-09-09 | Expand notes on issues with build system modules that require bootstrap | Boris Kolpackov | 1 | -0/+6 | |
2020-09-08 | Get rid of warning in static build | Boris Kolpackov | 1 | -0/+2 | |
2020-09-08 | Allow external modules that require bootstrap | Boris Kolpackov | 1 | -13/+34 | |
2020-09-01 | Add TODO comment | Boris Kolpackov | 1 | -0/+2 | |
2020-08-26 | Add missing symbol exports | Boris Kolpackov | 2 | -2/+2 | |
2020-08-26 | Fix bug in module initialization order | Boris Kolpackov | 3 | -26/+21 | |
2020-08-25 | Add missing move() call | Boris Kolpackov | 1 | -1/+3 | |
2020-08-25 | Fix bug in interaction of unmatch logic with target groups | Boris Kolpackov | 3 | -3/+23 | |
2020-08-24 | Only suggest ad hoc path import for path-based targets | Boris Kolpackov | 1 | -6/+10 | |
2020-08-24 | Use representation when passing target_triplet as hint | Boris Kolpackov | 4 | -3/+4 | |
2020-08-24 | Add copying version of convert<T>(value) | Boris Kolpackov | 4 | -12/+52 | |
2020-08-18 | Add ability to mark config.* variables as "unsaved" (always transient) | Boris Kolpackov | 5 | -19/+40 | |
2020-08-17 | Add mvfile() filesystem utility function | Boris Kolpackov | 3 | -19/+33 | |
2020-08-16 | Add support for post-configure and pre-disfigure hooks | Boris Kolpackov | 7 | -27/+131 | |
2020-08-16 | Add ability to initialize bootstrapped modules after loading root.build | Boris Kolpackov | 8 | -34/+64 | |
2020-08-16 | Redo modules map as vector | Boris Kolpackov | 3 | -43/+74 | |
2020-08-13 | Fix assertion failure in to_stream() for target key without extension | Karen Arutyunov | 1 | -2/+2 | |
Also fix a similar assertion. | |||||
2020-08-13 | Add few more run() overloads | Boris Kolpackov | 1 | -2/+17 | |
2020-08-12 | Adjust linker arguments for LTO parallelization | Matthew Krupcale | 1 | -0/+54 | |
GCC 10+ and Clang 4+ support controlling the number of LTO threads/jobs used during linking. Use the build2 scheduler to allocate up to the number of hardware threads to the GCC or Clang linker processes when -flto=auto or -flto=thin is specified, respectively. Otherwise, GCC or Clang will attempt to spawn the number of hardware threads detected for each linker process, which could result in up to n^2 linker threads on a CPU with n hardware threads. | |||||
2020-08-12 | Add iterator-based versions of find_option{,_prefix} | Matthew Krupcale | 2 | -3/+61 | |
This allows one to use all of the properties of iterators to manipulate the found option. | |||||
2020-08-12 | Add int64 and int64s variable types | Boris Kolpackov | 5 | -2/+115 | |
2020-08-11 | Add another variable_pool::insert() overload | Boris Kolpackov | 1 | -0/+9 | |
2020-08-10 | Fix bug scheduler::allocate/deallocate() | Boris Kolpackov | 1 | -2/+2 | |