summaryrefslogtreecommitdiffstats
path: root/build2/install
Commit message (Collapse)AuthorAgeFilesLines
* Move bunch of root scope-only data members to root_extraBoris Kolpackov2019-03-071-5/+5
|
* Skip subdirs logic if installation path includes file nameBoris Kolpackov2019-02-181-10/+21
|
* Update copyright yearKaren Arutyunov2019-01-168-8/+8
|
* Initial work on binless (binary-less aka header-only) library supportBoris Kolpackov2018-09-041-8/+27
|
* Don't insist on install rules for non-file targetsBoris Kolpackov2018-08-271-16/+41
| | | | This helps with (not) installing libu*{} groups.
* Make project variable to be of project_name typeKaren Arutyunov2018-07-301-1/+1
|
* Install bash module prerequisites for amalgamation rather than projectBoris Kolpackov2018-07-211-2/+6
| | | | This is similar to what we do for shared libraries in cc::install_rule.
* Match inner update rule before prerequisites in install::file_ruleBoris Kolpackov2018-07-201-8/+13
|
* Implement support for excluded and ad hoc prerequisitesBoris Kolpackov2018-06-282-5/+19
| | | | | | | | | | | | | | The inclusion/exclusion is controlled via the 'include' prerequisite-specific variable. Valid values are: false - exclude true - include adhoc - include but treat as an ad hoc input For example: lib{foo}: cxx{win32-utility}: include = ($cxx.targe.class == 'windows') exe{bar}: libs{plugin}: include = adhoc
* Add note on acl/noacl switch in baseutilsBoris Kolpackov2018-06-151-0/+3
|
* Handle fsdir{} prerequsites during installationBoris Kolpackov2018-06-093-0/+52
|
* Change default install filter to only accept prerequisites from amalgamationBoris Kolpackov2018-05-253-14/+35
|
* Update copyright yearKaren Arutyunov2018-05-198-8/+8
|
* Add lower-level pre/post installation hooks to install::file_ruleBoris Kolpackov2018-05-192-5/+47
|
* Fix group link-up raceBoris Kolpackov2018-02-161-1/+1
|
* Update/cleanup comment documentation for inner/outer operation semanticsBoris Kolpackov2018-02-081-7/+7
|
* Add support for update-for-{test,install} operation aliasesBoris Kolpackov2018-02-073-3/+23
|
* Rename prerequisite_member::target to prerequisite_member::memberBoris Kolpackov2018-02-051-2/+2
|
* Fix test and install rules to handle see-through groups correctlyBoris Kolpackov2018-02-053-24/+96
|
* Work around Clang issueBoris Kolpackov2018-02-031-0/+2
|
* Get rid of action rule override semanticsBoris Kolpackov2018-02-033-134/+198
| | | | | Instead we now have two more or less separate match states for outer and inner parts of an action.
* Load config.build in init(), not boot()Boris Kolpackov2018-01-042-2/+4
| | | | We now make sure the config module is init'ed first.
* Fix few undefined behavior (ubsan) bugsBoris Kolpackov2018-01-021-1/+7
|
* Improve process execution diagnostics by reusing run_*() APIBoris Kolpackov2017-12-161-103/+28
|
* Implement info meta operationBoris Kolpackov2017-12-133-6/+6
| | | | | This meta operation can be used to print basic information (name, version, source/output roots, etc) for one or more projects.
* Fix crashing on empty installation directory nameKaren Arutyunov2017-10-081-0/+3
|
* Adapt to modularization of libbutlKaren Arutyunov2017-10-031-1/+1
|
* Add ability to pass scope to buildfile functions, add $install.resolve()Boris Kolpackov2017-09-112-1/+37
|
* Add install::resolve_dir(scope) overloadBoris Kolpackov2017-09-082-8/+29
|
* Implement support for chroot'ed install (aka DESTDIR)Boris Kolpackov2017-08-133-37/+98
| | | | | | | | | | For example: b config.install.root=/usr config.install.chroot=/tmp/install The difference between doing just config.install.root=/tmp/install/usr is that everything is installed "as if" into /usr. So, for example, pkg-config files will contain -I/usr/include, -L/usr/lib, etc.
* Save module map to pkg-config filesBoris Kolpackov2017-08-022-0/+31
|
* Reimplement pkg-config generation with more conservative approach for nowBoris Kolpackov2017-08-012-32/+25
|
* Experimental (and probably broken) pkg-config generation supportBoris Kolpackov2017-07-314-29/+55
|
* Implement "see through" installation semantics for utility librariesBoris Kolpackov2017-07-293-14/+39
|
* Add support for custom data storage in target::preprequisite_targetsBoris Kolpackov2017-07-281-7/+7
|
* Remove implicit see-through iteration over ad hoc group membersBoris Kolpackov2017-06-051-9/+1
| | | | This can only be done MT-safely after a synchronous match.
* Add hxx extension for headersKaren Arutyunov2017-05-018-63/+63
|
* Pass target to prerequisite searchBoris Kolpackov2017-04-271-2/+2
|
* Adapt to process_error changeKaren Arutyunov2017-04-101-5/+5
|
* Add support for passing parameters to (meta-) operationsBoris Kolpackov2017-03-161-1/+4
|
* Implement parallel matchBoris Kolpackov2017-03-022-24/+20
|
* Implement parallel error propagation, keep_going modeBoris Kolpackov2017-02-132-3/+13
| | | | | | | Keep going is the default but there is now the -s|--serial-stop that makes the driver run serially and stop at first error. Also fix some lockups, other minor improvements/features.
* Do some naming cleanupsBoris Kolpackov2017-02-131-2/+2
|
* Implement parallel operation executionBoris Kolpackov2017-02-131-1/+1
|
* Use target:as<> instead of static_cast for target castingBoris Kolpackov2017-02-131-6/+5
|
* Pass const target& to recipesBoris Kolpackov2017-02-132-27/+34
|
* Pass const scope& where modification should not happenBoris Kolpackov2017-02-131-2/+5
|
* Implement pattern-based variable typing, tighten variable type updateBoris Kolpackov2017-02-131-1/+1
|
* Add model mutex, make var_pool const by defaultBoris Kolpackov2017-02-134-52/+62
|
* Add default constructors to *_rule classes to make older clang happyKaren Arutyunov2017-01-241-0/+4
|