Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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-18 | Make some documentation fixes | Francois Kritzinger | 2 | -77/+78 | |
2020-10-15 | Add ability to specify fallback value for NULL substitutions with in.null | Boris Kolpackov | 8 | -20/+73 | |
2020-10-07 | Add ability to specify extra adhoc files for distribution | Boris Kolpackov | 2 | -6/+58 | |
2020-10-05 | Update submodules | Boris Kolpackov | 2 | -0/+0 | |
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-29 | Remove stray text from manual | Boris Kolpackov | 1 | -3/+0 | |
2020-09-28 | Add $string.trim() function | Boris Kolpackov | 2 | -0/+19 | |
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-24 | Fix typo in manual | Boris Kolpackov | 1 | -1/+1 | |
2020-09-22 | Add ability to skip external modules during bootstrap (--no-external-modules) | Boris Kolpackov | 9 | -34/+108 | |
2020-09-22 | Add note about non-global variable overrides | Boris Kolpackov | 1 | -0/+5 | |
2020-09-21 | Update config submodule | Boris Kolpackov | 1 | -0/+0 | |
2020-09-17 | Add support for BUILD2_VAR_OVR and BUILD2_DEF_OPT environment variables | Karen Arutyunov | 3 | -33/+172 | |
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 | 2 | -15/+15 | |
2020-09-11 | Add support for default global variable overrides | Karen Arutyunov | 3 | -6/+47 | |
2020-09-09 | Fix formatting in man page | Boris Kolpackov | 2 | -4/+4 | |
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 | 4 | -53/+84 | |
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 | 6 | -2/+118 | |
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 | |
2020-08-10 | Allow holes in group_view array | Boris Kolpackov | 4 | -13/+50 | |
2020-08-07 | Add ability to allocate additional active threads to current thread | Boris Kolpackov | 2 | -3/+102 | |