Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-25 | Add find builtin description to Testscript manual | Karen Arutyunov | 1 | -0/+50 | |
2023-05-09 | Document JSON dump format (GH issue #182) | Boris Kolpackov | 1 | -0/+494 | |
2023-05-09 | Add support for dumping build system state in JSON format (GH issue #182) | Boris Kolpackov | 1 | -0/+2 | |
Specifically: 1. New --dump-format option. Valid values are `buildfile` and `json-v0.1`. 2. The --dump option now recognizes two additional values: `match-pre` and `match-post` to dump the state of pre/post-operations. The `match` value now only triggers dumping of the main operation. | |||||
2023-05-03 | Add --dump-scope and --dump-target options to limit --dump output | Boris Kolpackov | 1 | -1/+5 | |
2023-04-18 | Add support for Assembler with C Preprocessor (.S) compilation | Boris Kolpackov | 1 | -0/+84 | |
Specifically, the c module now provides the c.as-cpp submodules which can be loaded in order to register the S{} target type and enable Assembler with C Preprocessor compilation in the c compile rule. For details, refer to "Assembler with C Preprocessor Compilation" in the manual. | |||||
2023-04-10 | Add support for negation in config.install.filter | Boris Kolpackov | 1 | -8/+14 | |
2023-04-04 | Remove global override restriction from config.install.filter | Boris Kolpackov | 1 | -6/+5 | |
2023-04-04 | Add support for installation filtering (GH issue #147) | Boris Kolpackov | 1 | -0/+75 | |
2023-03-24 | Document relocatable installation support | Boris Kolpackov | 1 | -0/+67 | |
2023-03-14 | Quality "distribution" with "source" in manual | Boris Kolpackov | 1 | -15/+15 | |
2023-03-09 | Add note to manual | Boris Kolpackov | 1 | -0/+3 | |
2023-03-07 | Add new include_arch/config.install.include_arch installation location | Boris Kolpackov | 1 | -39/+61 | |
It is mean for target architecture-specific headers. | |||||
2022-12-05 | Add missing colon in intro-unit-test | William Roy | 1 | -1/+1 | |
2022-11-24 | Document Objective-C/C++ support in manual | Boris Kolpackov | 1 | -0/+57 | |
2022-10-21 | Change attribute syntax in script to come after variable in set and for (set ↵ | Karen Arutyunov | 1 | -13/+13 | |
x [...], for x [...]) | |||||
2022-10-14 | Fix typo in Testscript manual | Boris Kolpackov | 1 | -1/+1 | |
2022-10-14 | Describe how to test multiple executables in single testscript | Boris Kolpackov | 1 | -3/+74 | |
2022-10-14 | Add notes on serial execution in Testscript manual | Boris Kolpackov | 1 | -0/+7 | |
2022-10-14 | Proofreading changes to Testscript manual (for/while loops) | Boris Kolpackov | 1 | -75/+61 | |
2022-10-13 | Add support for 'for' loop second (... | for x) and third (for x <...) forms ↵ | Karen Arutyunov | 1 | -27/+281 | |
in script | |||||
2022-10-13 | Fix include directive example in testscript manual | Karen Arutyunov | 1 | -1/+1 | |
2022-09-02 | Add note on PowerShell quoting | Boris Kolpackov | 1 | -0/+9 | |
2022-09-02 | Add ability to specify `in` rule substitution as key-value pairs | Boris Kolpackov | 1 | -0/+45 | |
2022-09-02 | Rename in.substitution variable to in.mode | Boris Kolpackov | 1 | -14/+15 | |
The original name is still recognized for backwards compatibility. | |||||
2022-08-17 | Fix typo in manual | Boris Kolpackov | 1 | -1/+1 | |
2022-07-29 | Change version to 0.16.0-a.0.z | Boris Kolpackov | 1 | -1/+1 | |
2022-07-28 | Release version 0.15.0v0.15.0 | Boris Kolpackov | 1 | -1/+1 | |
2022-07-28 | Fix incorrect link title in manual | Boris Kolpackov | 1 | -4/+4 | |
2022-07-26 | Minor additions to manual | Boris Kolpackov | 1 | -9/+24 | |
2022-07-18 | Add few references to manual | Boris Kolpackov | 1 | -3/+5 | |
2022-07-13 | In manual adjust link to renamed section in bpkg manual | Karen Arutyunov | 1 | -2/+1 | |
2022-07-08 | Update manual with package manager configuration negotiation information | Boris Kolpackov | 1 | -3/+89 | |
2022-07-07 | Use new cmdline type for canned command lines in {Build,Test}script | Boris Kolpackov | 1 | -29/+24 | |
2022-06-29 | Rework pkg-config variable naming, use build2.metadata as general indicator | Boris Kolpackov | 1 | -5/+5 | |
2022-06-21 | Add --trace-{match,execute} options | Boris Kolpackov | 1 | -4/+23 | |
These options can be used to understand which dependency chain causes matching or execution of a particular target. | |||||
2022-04-06 | Add support for rule hints | Boris Kolpackov | 1 | -0/+11 | |
A rule hint is a target attribute, for example: [rule_hint=cxx] exe{hello}: c{hello} Rule hints can be used to resolve ambiguity when multiple rules match the same target as well as to override an unambiguous match. | |||||
2022-03-28 | Add ability to customize pkg-config header and library search paths | Boris Kolpackov | 1 | -6/+27 | |
Specifically, {cc,c,cxx}.pkgconfig.{include,lib} variables specify header (-I) and library (-L) search paths to use in the generated .pc files instead of the default install.{include,lib}. Relative paths are resolved as install paths. | |||||
2022-03-23 | Document config.config.disfigure | Boris Kolpackov | 1 | -1/+19 | |
2022-03-23 | Make project configuration variables non-nullable by default | Boris Kolpackov | 1 | -11/+20 | |
A project configuration variable with the NULL default value is naturally assumed nullable, for example: config [string] config.libhello.fallback_name ?= [null] Otherwise, to make a project configuration nullable we use the `null` variable attribute, for example: config [string, null] config.libhello.fallback_name ?= "World" | |||||
2022-03-10 | Update manual to match new header pre-generation functionality | Boris Kolpackov | 1 | -25/+22 | |
2022-02-24 | Add note on disabling subprojects/amalgamations import search | Boris Kolpackov | 1 | -0/+10 | |
2022-02-18 | Move parse_cmdline() to libbuild2 | Karen Arutyunov | 1 | -2/+2 | |
2022-01-26 | Make bash module install into bin/<project>.bash/ to avoid clashes | Boris Kolpackov | 1 | -12/+15 | |
Also, expect the first component in the import path to be full project name even in case it has the .bash extension. | |||||
2022-01-16 | Expand on extension escaping in manual | Boris Kolpackov | 1 | -2/+8 | |
2022-01-16 | Minor clarifications to wildcard name patterns section in manual | Boris Kolpackov | 1 | -7/+16 | |
2021-11-09 | Pass --ascii-tree CLI option when generating embedded usage and man pages | Boris Kolpackov | 1 | -1/+3 | |
2021-11-04 | Document \n escape sequence for sed builtin in testscript manual | Karen Arutyunov | 1 | -0/+1 | |
2021-10-27 | Handle "common symbols" in symbol exporting .def generation rule | Boris Kolpackov | 1 | -2/+2 | |
2021-10-26 | Minor documentation tweak | Boris Kolpackov | 1 | -6/+6 | |
2021-10-20 | Change to version 0.15.0-a.0.z | Boris Kolpackov | 1 | -1/+1 | |