aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/install
AgeCommit message (Collapse)AuthorFilesLines
2024-02-06Fix bunch of maybe used uninitialized warningsBoris Kolpackov1-1/+1
2023-11-03Work around lack of definition for static constexpr some moreBoris Kolpackov1-2/+4
2023-11-03Work around lack of definition for static constexprBoris Kolpackov1-2/+2
During bootstrap we compile in C++14 where it is not implicitly inline.
2023-11-01Use match options for runtime/buildtime distinction when installing librariesBoris Kolpackov2-131/+426
Specifically, now, if a library is installed solely as a prerequisite of an executable (potentially recursively), then only its runtime files are installed omitting everything buildtime-related (static/import libraries, non-versioned symlinks for shared libraries, pkg-config files, headers, etc). If you are familiar with the runtime and -dev/-devel package splits for libraries in Debian/Fedora, this is an analogous semantics.
2023-09-20Fix issue with fallback rule priority in dist moduleBoris Kolpackov1-1/+4
While at it, also remove workarounds for the same issue in the config and test modules.
2023-07-20Change inner rule/prerequisites match order in install::file_ruleBoris Kolpackov1-1/+32
The old order messed up the for-install signaling logic. See the long comment in install::file_rule::apply_impl() for background and details.
2023-06-15Remove stray whitespace from "uninstall" command nameBoris Kolpackov1-3/+3
2023-06-08Add support for buildfile importationBoris Kolpackov1-1/+3
2023-06-01Add inner_recipe for expressivenessBoris Kolpackov1-1/+1
2023-04-10Add support for negation in config.install.filterBoris Kolpackov2-5/+19
2023-04-04Remove global override restriction from config.install.filterBoris Kolpackov7-403/+355
2023-04-04Add support for installation filtering (GH issue #147)Boris Kolpackov6-64/+519
2023-03-29Specify potential future extensions to install manifest formatBoris Kolpackov1-0/+3
2023-03-24Document relocatable installation supportBoris Kolpackov1-5/+5
2023-03-23Add support for relocatable installation in $install.resolve()Boris Kolpackov3-13/+102
2023-03-23Add support for relocatable installation manifestBoris Kolpackov6-42/+116
2023-03-22Initial work on relocatable install: config.install.relocatable and rpathBoris Kolpackov1-2/+23
2023-03-07Add new include_arch/config.install.include_arch installation locationBoris Kolpackov1-35/+37
It is mean for target architecture-specific headers.
2023-03-01Add support for installation manifestBoris Kolpackov5-19/+485
2023-02-22Set explicit 755 install mode for exe{} targetsBoris Kolpackov1-0/+5
This helps cases where an executable gets installed somewhere else where the default is not 755 (for example to libexec/, which on Debian has the 644 mode).
2022-12-08Normalize extracted header/library search directories (GH issue #235)Boris Kolpackov3-8/+12
2022-11-23Rework diag_buffer interface to facilitate correct destruction orderBoris Kolpackov1-4/+4
2022-11-16Initial low verbosity diagnostics reworkBoris Kolpackov2-38/+117
2022-11-08Make process exit diagnostics consistentBoris Kolpackov1-8/+22
In particular, we now always print error message on non-0 exit except in cases where such exit is ignored.
2022-11-08More work on child process diagnostics bufferingBoris Kolpackov1-6/+11
2022-10-13Improve diagnosticsBoris Kolpackov1-0/+12
2022-10-13Optimize by going straight to public variable pool where applicableBoris Kolpackov2-13/+16
2022-10-13Switch to public/private variables modelBoris Kolpackov3-35/+41
Now unqualified variables are project-private and can be typified.
2022-10-10Preparatory work for public/private variable distinctionBoris Kolpackov1-0/+2
We still always use the public var_pool from context but where required, all access now goes through scope::var_pool().
2022-05-23Cache build.host value in contextBoris Kolpackov1-2/+2
2022-04-19Switch recipe from std::function to butl::move_only_function_exBoris Kolpackov1-1/+1
2022-04-07Rename {match,execute}() to *_sync(), add *_complete()Boris Kolpackov1-5/+5
In particular, the match() rename makes sure it doesn't clash with rule::match() which, after removal of the hint argument in simple_rule, has exactly the same signature, thus making it error-prone to calling recursively.
2022-04-06Add support for rule hintsBoris Kolpackov3-19/+18
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-21Filter out exe{} prerequisites in install group rule similar to file ruleBoris Kolpackov2-0/+29
2022-03-21Make sure install group rule take precedence over fallback file ruleBoris Kolpackov1-2/+8
2022-03-07Fix operation-specific variables logic for inner/outer operationsBoris Kolpackov2-9/+18
2022-03-02Add update operation-specific variable with unmatch|match additional valuesBoris Kolpackov2-10/+29
Note that the unmatch (match but do not update) and match (update during match) values are only supported by certain rules (and potentially only for certain prerequisite types). Additionally: - All operation-specific variables are now checked for false as an override for the prerequisite-specific include value. In particular, this can now be used to disable a prerequisite for update, for example: ./: exe{test}: update = false - The cc::link_rule now supports the update=match value for headers and ad hoc prerequisites. In particular, this can be used to make sure all the library headers are updated before matching any of its (or dependent's) object files.
2022-01-26Make bash module install into bin/<project>.bash/ to avoid clashesBoris Kolpackov1-1/+0
Also, expect the first component in the import path to be full project name even in case it has the .bash extension.
2021-12-16Pass context to (meta-)operation hooksBoris Kolpackov1-3/+6
2021-11-04Do not apply install scope to update-for-install pre-operationBoris Kolpackov2-2/+6
2021-10-07Allow forcing installation of exe{} prerequisites of file targetsBoris Kolpackov2-2/+12
This can be achieved with prerequisite-specific install=true, for example: exe{foo}: exe{bar}: install = true # foo runs bar
2021-10-07Minor install-related cleanupsBoris Kolpackov2-2/+15
2021-10-06Do not install exe{} prerequisites of file targetsBoris Kolpackov2-7/+18
2021-09-29Add notion of bundle amalgamation scopeBoris Kolpackov2-0/+3
2021-09-28Adapt to libbutl headers extension change from .mxx to .hxxKaren Arutyunov2-2/+2
2021-09-17Add fallback update-for-uninstall rule to global scopeBoris Kolpackov1-3/+6
2021-09-14Fix few issues with new config.install.scopeBoris Kolpackov1-32/+31
2021-09-14Consistently install prerequisites from any scope by defaultBoris Kolpackov5-24/+111
It is also now possible to adjust this behavior with global config.install.scope override. Valid values for this variable are: project -- only from project strong -- from strong amalgamation weak -- from weak amalgamation global -- from all projects (default)
2021-05-04Add config.install.root with data_root/etc/ defaultBoris Kolpackov1-0/+2
2021-04-22Add <version> install directory substitution in addition to <project>Boris Kolpackov1-5/+20